Home
last modified time | relevance | path

Searched defs:throw (Results 1 – 25 of 86) sorted by relevance

1234

/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/
Dclient.h29 operator IInspectable**() const throw() { in throw() function
35 operator IUnknown**() const throw() { in throw() function
47 operator void**() const throw() { in throw() function
51 operator T*() throw() { in throw() function
56 operator typename ComPtrRefBase<T>::InterfaceType**() throw() { in throw() function
60 typename ComPtrRefBase<T>::InterfaceType *operator*() throw() { in throw() function
79 ComPtr() throw() : ptr_(nullptr) {} in throw() function
80 ComPtr(decltype(nullptr)) throw() : ptr_(nullptr) {} in throw() function
86 ComPtr(const ComPtr &other) throw() : ptr_(other.ptr_) { in throw() function
95 ComPtr(ComPtr &&other) throw() : ptr_(nullptr) { in throw() function
[all …]
Dinternal.h21 …void DECLSPEC_NORETURN RaiseException(HRESULT hr, DWORD flags = EXCEPTION_NONCONTINUABLE) throw() { in throw() function
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
Dcomip.h78 _com_ptr_t() throw() : m_pInterface(NULL) { } in throw() function
87 _com_ptr_t(const _com_ptr_t &cp) throw() : m_pInterface(cp.m_pInterface) { _AddRef(); } in throw() function
88 _com_ptr_t(Interface *pInterface) throw() : m_pInterface(pInterface) { _AddRef(); } in throw() function
118 _com_ptr_t &operator=(Interface *pInterface) throw() { in throw() function
127 _com_ptr_t &operator=(const _com_ptr_t &cp) throw() { return operator=(cp.m_pInterface); } in throw() function
141 ~_com_ptr_t() throw() { _Release(); } in throw() function
159 operator Interface*() const throw() { return m_pInterface; } in throw() function
168 Interface **operator&() throw() { in throw() function
177 operator bool() const throw() { return m_pInterface!=NULL; } in throw() function
222 …eateInstance(const CLSID &rclsid,IUnknown *pOuter = NULL,DWORD dwClsContext = CLSCTX_ALL) throw() { in throw() function
[all …]
Dcomutil.h148 inline _bstr_t &_bstr_t::operator=(const _bstr_t &s) throw() { in throw() function
205 inline _bstr_t::operator const wchar_t *() const throw() { return (m_Data!=NULL) ? m_Data->GetWStri… in throw() function
206 inline _bstr_t::operator wchar_t *() const throw() { return const_cast<wchar_t *>((m_Data!=NULL) ? … in throw() function
213 inline bool _bstr_t::operator>(const _bstr_t &str) const throw() { return _Compare(str)>0; } in throw() function
215 inline bool _bstr_t::operator>=(const _bstr_t &str) const throw() { return _Compare(str)>=0; } in throw() function
323 inline _bstr_t::Data_t::operator const wchar_t *() const throw() { return m_wstr; } in throw() function
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dexperimental_any_helpers.h92 small_type(small_type const & other) throw() { in throw() function
99 small_type(small_type& other) throw() { in throw() function
106 small_type(small_type && other) throw() { in throw() function
245 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
276 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
H A Dany_helpers.h290 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
330 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
/aosp_15_r20/external/libcxx/test/support/
H A Dexperimental_any_helpers.h98 small_type(small_type const & other) throw() { in throw() function
105 small_type(small_type& other) throw() { in throw() function
112 small_type(small_type && other) throw() { in throw() function
251 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
282 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
H A Dany_helpers.h293 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
333 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/wrappers/
Dcorewrappers.h60 HStringReference(const HStringReference &other) throw() : hstr_(nullptr) { in throw() function
66 ~HStringReference() throw() { in throw() function
70 HStringReference& operator=(const HStringReference &other) throw() { in throw() function
/aosp_15_r20/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h323 MallocAllocator(const MallocAllocator&) throw() {} in throw() function
325 ~MallocAllocator() throw() {} in throw() function
368 MallocAllocator(const MallocAllocator&) throw() {} in throw() function
370 ~MallocAllocator() throw() {} in throw() function
/aosp_15_r20/external/antlr/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm21 sub throw : Test(1) { subroutine
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_java_ffi/src/class/
Ddeserialization_exception.rs44 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
71 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
Downed_handle.rs42 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
Dhandle.rs42 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_collections.py800 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Awaitable.MinimalCoro
852 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Coroutine.MinimalCoro
882 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Coroutine.CoroLike
1170 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.NonGen1
1181 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.NonGen3
1195 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.Gen
1200 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Generator.MinimalGen
1226 def throw(self, *args): raise ValueError member in TestOneTrickPonyABCs.test_Generator.FailOnClose
1232 def throw(self, *args): pass member in TestOneTrickPonyABCs.test_Generator.IgnoreGeneratorExit
Dtest_types.py1885 def throw(self): pass member in CoroutineTests.test_duck_coro.CoroLike
1899 def throw(self): pass member in CoroutineTests.test_duck_corogen.CoroGenLike
1915 def throw(self): pass member in CoroutineTests.test_duck_gen.GenLike
2043 def throw(self, tp, *exc): member in CoroutineTests.test_duck_functional_gen.Generator
/aosp_15_r20/external/clang/test/Analysis/
H A Dretain-release.mm429 Holder<X>::Holder() throw() function
434 X* Holder<X>::get() const throw() { function
440 void Holder<X>::reset(X* p) throw() { function
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/
H A Dmod.rs52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/
H A Dmod.rs52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/
H A Dmod.rs52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/
H A Dmod.rs52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/crates/core_arch/src/wasm32/
H A Dmod.rs52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
/aosp_15_r20/external/toybox/toys/other/
H A Dshred.c47 int fd = open(*try, O_RDWR), iter = 0, throw; local
/aosp_15_r20/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() function
/aosp_15_r20/external/intel-media-driver/media_driver/linux/common/cm/hal/osservice/
H A Dcm_mem_os.h61 #define throw(...) macro

1234