Home
last modified time | relevance | path

Searched refs:ComPtr (Results 1 – 25 of 2474) sorted by relevance

12345678910>>...99

/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/Direct3D11/include/
H A DOgreComPtr.h85 class ComPtr
122 ComPtr() ASSUME_NOEXCEPT : m_ptr(0) {} in ComPtr() function
130 ComPtr(const ComPtr & other) ASSUME_NOEXCEPT : m_ptr(other.m_ptr) in ComPtr() function
136 ComPtr(ComPtr<U> const & other) ASSUME_NOEXCEPT : m_ptr(other.m_ptr) in ComPtr() function
141 ~ComPtr() ASSUME_NOEXCEPT in ~ComPtr()
159 ComPtr& operator=(const ComPtr& other) ASSUME_NOEXCEPT
166 ComPtr& operator=(const ComPtr<U>& other) ASSUME_NOEXCEPT
240 template<class T> void swap(ComPtr<T>& a, ComPtr<T>& b) { return a.Swap(b); } in swap()
242 …template<class T> bool operator==(const ComPtr<T>& a, const ComPtr<T>& b) ASSUME_NOEXCEPT { return…
244 …template<class T> bool operator< (const ComPtr<T>& a, const ComPtr<T>& b) ASSUME_NOEXCEPT { return…
[all …]
/dports/lang/v8/v8-9.6.180.12/tools/v8windbg/src/
H A Dv8windbg-extension.h21 WRL::ComPtr<IDebugHostModule> GetV8Module(
22 WRL::ComPtr<IDebugHostContext>& sp_ctx);
23 WRL::ComPtr<IDebugHostType> GetTypeFromV8Module(
25 WRL::ComPtr<IDebugHostType> GetV8ObjectType(
26 WRL::ComPtr<IDebugHostContext>& sp_ctx);
52 WRL::ComPtr<IModelObject> sp_data_model);
64 WRL::ComPtr<IModelObject> parent;
66 WRL::ComPtr<IModelObject> original_value;
67 WRL::ComPtr<IKeyStore> original_metadata;
79 WRL::ComPtr<IModelObject> sp_data_model;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/v8windbg/src/
H A Dv8windbg-extension.h21 WRL::ComPtr<IDebugHostModule> GetV8Module(
22 WRL::ComPtr<IDebugHostContext>& sp_ctx);
23 WRL::ComPtr<IDebugHostType> GetTypeFromV8Module(
25 WRL::ComPtr<IDebugHostType> GetV8ObjectType(
26 WRL::ComPtr<IDebugHostContext>& sp_ctx);
52 WRL::ComPtr<IModelObject> sp_data_model);
64 WRL::ComPtr<IModelObject> parent;
66 WRL::ComPtr<IModelObject> original_value;
67 WRL::ComPtr<IKeyStore> original_metadata;
79 WRL::ComPtr<IModelObject> sp_data_model;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/accessibility/platform/
H A Dax_platform_node_textchildprovider_win_unittest.cc13 using Microsoft::WRL::ComPtr;
174 ComPtr<IUnknown> pattern_provider; in TEST_F()
191 ComPtr<IUnknown> pattern_provider; in TEST_F()
208 ComPtr<IUnknown> pattern_provider; in TEST_F()
225 ComPtr<IUnknown> pattern_provider; in TEST_F()
242 ComPtr<IUnknown> pattern_provider; in TEST_F()
257 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
265 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
286 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
305 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
[all …]
H A Dax_platform_node_win_unittest.h65 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
67 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
69 Microsoft::WRL::ComPtr<IRawElementProviderSimple>
72 Microsoft::WRL::ComPtr<IRawElementProviderFragment>
74 Microsoft::WRL::ComPtr<IRawElementProviderFragment>
78 Microsoft::WRL::ComPtr<IAccessible2> ToIAccessible2(
79 Microsoft::WRL::ComPtr<IUnknown> unknown);
80 Microsoft::WRL::ComPtr<IAccessible2> ToIAccessible2(
81 Microsoft::WRL::ComPtr<IAccessible> accessible);
82 Microsoft::WRL::ComPtr<IAccessible2_2> ToIAccessible2_2(
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/platform/
H A Dax_platform_node_textchildprovider_win_unittest.cc13 using Microsoft::WRL::ComPtr;
174 ComPtr<IUnknown> pattern_provider; in TEST_F()
191 ComPtr<IUnknown> pattern_provider; in TEST_F()
208 ComPtr<IUnknown> pattern_provider; in TEST_F()
225 ComPtr<IUnknown> pattern_provider; in TEST_F()
242 ComPtr<IUnknown> pattern_provider; in TEST_F()
257 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
265 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
286 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
305 ComPtr<ITextRangeProvider> text_range_provider; in TEST_F()
[all …]
/dports/devel/apitrace/apitrace-9.0/thirdparty/directxtex/DirectXTex/
H A DBCDirectCompute.h40 Microsoft::WRL::ComPtr<ID3D11Device> m_device;
41 Microsoft::WRL::ComPtr<ID3D11DeviceContext> m_context;
43 Microsoft::WRL::ComPtr<ID3D11Buffer> m_err1;
44 Microsoft::WRL::ComPtr<ID3D11UnorderedAccessView> m_err1UAV;
45 Microsoft::WRL::ComPtr<ID3D11ShaderResourceView> m_err1SRV;
47 Microsoft::WRL::ComPtr<ID3D11Buffer> m_err2;
48 Microsoft::WRL::ComPtr<ID3D11UnorderedAccessView> m_err2UAV;
49 Microsoft::WRL::ComPtr<ID3D11ShaderResourceView> m_err2SRV;
51 Microsoft::WRL::ComPtr<ID3D11Buffer> m_output;
52 Microsoft::WRL::ComPtr<ID3D11Buffer> m_outputCPU;
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/wrl/
H A Dclient.h75 template<typename T> class ComPtr {
86 ComPtr(const ComPtr &other) throw() : ptr_(other.ptr_) { in throw()
91 ComPtr(const ComPtr<U> &other) throw() : ptr_(other.Get()) { in ComPtr() function
95 ComPtr(ComPtr &&other) throw() : ptr_(nullptr) { in throw()
101 ComPtr(ComPtr<U>&& other) throw() : ptr_(other.Detach()) {} in ComPtr() function
103 ~ComPtr() throw() { in throw()
131 ComPtr& operator=(const ComPtr &other) throw() { in throw()
138 ComPtr &operator=(const ComPtr<U> &other) throw() { in throw()
139 ComPtr(other).Swap(*this); in throw()
143 ComPtr& operator=(ComPtr &&other) throw() { in throw()
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/wrl/
H A Dclient.h75 template<typename T> class ComPtr {
86 ComPtr(const ComPtr &other) throw() : ptr_(other.ptr_) { in throw()
91 ComPtr(const ComPtr<U> &other) throw() : ptr_(other.Get()) { in ComPtr() function
95 ComPtr(ComPtr &&other) throw() : ptr_(nullptr) { in throw()
101 ComPtr(ComPtr<U>&& other) throw() : ptr_(other.Detach()) {} in ComPtr() function
103 ~ComPtr() throw() { in throw()
131 ComPtr& operator=(const ComPtr &other) throw() { in throw()
138 ComPtr &operator=(const ComPtr<U> &other) throw() { in throw()
139 ComPtr(other).Swap(*this); in throw()
143 ComPtr& operator=(ComPtr &&other) throw() { in throw()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/v8windbg/src/
H A Dv8windbg-extension.h21 WRL::ComPtr<IDebugHostModule> GetV8Module(
22 WRL::ComPtr<IDebugHostContext>& sp_ctx);
23 WRL::ComPtr<IDebugHostType> GetTypeFromV8Module(
25 WRL::ComPtr<IDebugHostType> GetV8ObjectType(
26 WRL::ComPtr<IDebugHostContext>& sp_ctx);
59 WRL::ComPtr<IModelObject> parent;
61 WRL::ComPtr<IModelObject> original_value;
62 WRL::ComPtr<IKeyStore> original_metadata;
67 WRL::ComPtr<IModelObject> sp_object_data_model_;
68 WRL::ComPtr<IModelObject> sp_local_data_model_;
[all …]
/dports/emulators/mess/mame-mame0226/3rdparty/compat/winsdk-override/wrl/
H A Dclient.h75 template<typename T> class ComPtr {
82 ComPtr(const ComPtr &other) throw() : ptr_(other.ptr_) { in throw()
87 ComPtr(const ComPtr<U> &other) throw() : ptr_(other.ptr_) { in ComPtr() function
91 ComPtr(ComPtr &&other) throw() : ptr_(nullptr) { in throw()
97 ComPtr(ComPtr<U>&& other) throw() : ptr_(other.ptr_) { in ComPtr() function
101 ~ComPtr() throw() { in throw()
129 ComPtr& operator=(const ComPtr &other) throw() { in throw()
136 ComPtr &operator=(const ComPtr<U> &other) throw() { in throw()
137 ComPtr(other).Swap(*this); in throw()
141 ComPtr& operator=(ComPtr &&other) throw() { in throw()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/compat/winsdk-override/wrl/
H A Dclient.h75 template<typename T> class ComPtr {
82 ComPtr(const ComPtr &other) throw() : ptr_(other.ptr_) { in throw()
87 ComPtr(const ComPtr<U> &other) throw() : ptr_(other.ptr_) { in ComPtr() function
91 ComPtr(ComPtr &&other) throw() : ptr_(nullptr) { in throw()
97 ComPtr(ComPtr<U>&& other) throw() : ptr_(other.ptr_) { in ComPtr() function
101 ~ComPtr() throw() { in throw()
129 ComPtr& operator=(const ComPtr &other) throw() { in throw()
136 ComPtr &operator=(const ComPtr<U> &other) throw() { in throw()
137 ComPtr(other).Swap(*this); in throw()
141 ComPtr& operator=(ComPtr &&other) throw() { in throw()
[all …]
/dports/multimedia/obs-studio/obs-studio-27.1.3/libobs/util/windows/
H A DComPtr.hpp26 template<class T> class ComPtr { class
49 inline ComPtr() : ptr(nullptr) {} in ComPtr() function in ComPtr
50 inline ComPtr(T *p) : ptr(p) in ComPtr() function in ComPtr
55 inline ComPtr(const ComPtr<T> &c) : ptr(c.ptr) in ComPtr() function in ComPtr
60 inline ComPtr(ComPtr<T> &&c) noexcept : ptr(c.ptr) { c.ptr = nullptr; } in ComPtr() function in ComPtr
62 inline ComPtr(ComPtr<U> &&c) noexcept : ptr(c.Detach()) in ComPtr() function in ComPtr
65 inline ~ComPtr() { Kill(); } in ~ComPtr()
81 inline ComPtr<T> &operator=(const ComPtr<T> &c) in operator =()
87 inline ComPtr<T> &operator=(ComPtr<T> &&c) noexcept in operator =()
98 template<class U> inline ComPtr<T> &operator=(ComPtr<U> &&c) noexcept in operator =()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gl/
H A Ddc_layer_tree.h36 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device,
78 const Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator>&
91 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
92 Microsoft::WRL::ComPtr<IDCompositionDevice2> dcomp_device_;
93 Microsoft::WRL::ComPtr<IDCompositionTarget> dcomp_target_;
97 Microsoft::WRL::ComPtr<ID3D11VideoDevice> video_device_;
98 Microsoft::WRL::ComPtr<ID3D11VideoContext> video_context_;
99 Microsoft::WRL::ComPtr<ID3D11VideoProcessor> video_processor_;
100 Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator>
111 Microsoft::WRL::ComPtr<IDXGISwapChain1> root_swap_chain_;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gl/
H A Ddc_layer_tree.h58 Microsoft::WRL::ComPtr<IDXGISwapChain1> swap_chain,
81 const Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator>&
106 Microsoft::WRL::ComPtr<IDXGISwapChain1> swap_chain,
114 Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device_;
115 Microsoft::WRL::ComPtr<IDCompositionDevice2> dcomp_device_;
116 Microsoft::WRL::ComPtr<IDCompositionTarget> dcomp_target_;
120 Microsoft::WRL::ComPtr<ID3D11VideoDevice> video_device_;
121 Microsoft::WRL::ComPtr<ID3D11VideoContext> video_context_;
122 Microsoft::WRL::ComPtr<ID3D11VideoProcessor> video_processor_;
123 Microsoft::WRL::ComPtr<ID3D11VideoProcessorEnumerator>
[all …]
/dports/audio/musicpd/mpd-0.23.6/src/win32/
H A DComPtr.hxx34 class ComPtr { class
40 constexpr ComPtr() noexcept : ptr(nullptr) {} in ComPtr() function in ComPtr
41 constexpr ComPtr(std::nullptr_t) noexcept : ptr(nullptr) {} in ComPtr() function in ComPtr
42 explicit constexpr ComPtr(pointer p) noexcept : ptr(p) {} in ComPtr() function in ComPtr
44 ComPtr(const ComPtr &u) noexcept : ptr(u.ptr) { in ComPtr() function in ComPtr
49 constexpr ComPtr(ComPtr &&u) noexcept : ptr(std::exchange(u.ptr, nullptr)) {} in ComPtr() function in ComPtr
51 ComPtr &operator=(const ComPtr &r) noexcept { in operator =()
59 constexpr ComPtr &operator=(ComPtr &&r) noexcept { in operator =()
63 ComPtr &operator=(std::nullptr_t) noexcept { in operator =()
68 ~ComPtr() noexcept { reset(); } in ~ComPtr()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/vr/windows/
H A Dd3d11_texture_helper.h42 const Microsoft::WRL::ComPtr<ID3D11Texture2D>& GetBackbuffer();
55 Microsoft::WRL::ComPtr<ID3D11Device> GetDevice();
64 Microsoft::WRL::ComPtr<ID3D11Texture2D> source_texture_;
66 Microsoft::WRL::ComPtr<ID3D11SamplerState> sampler_;
67 Microsoft::WRL::ComPtr<IDXGIKeyedMutex> keyed_mutex_;
81 Microsoft::WRL::ComPtr<IDXGIAdapter> GetAdapter();
90 Microsoft::WRL::ComPtr<ID3D11Device1> d3d11_device_;
95 Microsoft::WRL::ComPtr<ID3D11VertexShader> vertex_shader_;
98 Microsoft::WRL::ComPtr<ID3D11InputLayout> input_layout_;
99 Microsoft::WRL::ComPtr<ID3D11Buffer> vertex_buffer_;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/device/vr/windows/
H A Dd3d11_texture_helper.h42 const Microsoft::WRL::ComPtr<ID3D11Texture2D>& GetBackbuffer();
55 Microsoft::WRL::ComPtr<ID3D11Device> GetDevice();
64 Microsoft::WRL::ComPtr<ID3D11Texture2D> source_texture_;
66 Microsoft::WRL::ComPtr<ID3D11SamplerState> sampler_;
67 Microsoft::WRL::ComPtr<IDXGIKeyedMutex> keyed_mutex_;
81 Microsoft::WRL::ComPtr<IDXGIAdapter> GetAdapter();
90 Microsoft::WRL::ComPtr<ID3D11Device1> d3d11_device_;
95 Microsoft::WRL::ComPtr<ID3D11VertexShader> vertex_shader_;
98 Microsoft::WRL::ComPtr<ID3D11InputLayout> input_layout_;
99 Microsoft::WRL::ComPtr<ID3D11Buffer> vertex_buffer_;
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/wio/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { implementation
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/wio/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { impl
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/wio-0.2.2/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { impl
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/wio/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { implementation
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/wio/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { implementation
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/wio-0.2.2/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { implementation
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]
/dports/graphics/rx/rx-0.4.0/cargo-crates/wio-0.2.2/src/
H A Dcom.rs15 pub struct ComPtr<T>(NonNull<T>); struct
16 impl<T> ComPtr<T> { implementation
25 unsafe { ComPtr::from_raw(self.into_raw() as *mut U) } in up()
43 Ok(unsafe { ComPtr::from_raw(obj as *mut U) }) in cast()
51 impl<T> Deref for ComPtr<T> { implementation
57 impl<T> Clone for ComPtr<T> where T: Interface { implementation
61 ComPtr::from_raw(self.as_raw()) in clone()
65 impl<T> Debug for ComPtr<T> { implementation
70 impl<T> Drop for ComPtr<T> { implementation
75 impl<T> PartialEq<ComPtr<T>> for ComPtr<T> where T: Interface { implementation
[all …]

12345678910>>...99