/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/ |
D | client.h | 29 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 …]
|
D | internal.h | 21 …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/ |
D | comip.h | 78 _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 …]
|
D | comutil.h | 148 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 D | experimental_any_helpers.h | 92 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 D | any_helpers.h | 290 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 D | experimental_any_helpers.h | 98 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 D | any_helpers.h | 293 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/ |
D | corewrappers.h | 60 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/ |
D | Allocators.h | 323 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 D | Exception.pm | 21 sub throw : Test(1) { subroutine
|
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_java_ffi/src/class/ |
D | deserialization_exception.rs | 44 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
|
D | owned_handle.rs | 42 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
|
D | handle.rs | 42 pub fn throw<'env>(&self, env: &mut JNIEnv<'env>) -> jni::errors::Result<()> { in throw() method
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_collections.py | 800 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
|
D | test_types.py | 1885 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 D | retain-release.mm | 429 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 D | mod.rs | 52 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 D | mod.rs | 52 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 D | mod.rs | 52 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 D | mod.rs | 52 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 D | mod.rs | 52 pub unsafe fn throw<const TAG: i32>(ptr: *mut u8) -> ! { in throw() function
|
/aosp_15_r20/external/toybox/toys/other/ |
H A D | shred.c | 47 int fd = open(*try, O_RDWR), iter = 0, throw; local
|
/aosp_15_r20/external/clang/test/Analysis/diagnostics/Inputs/include/ |
H A D | report-issues-within-main-file.h | 6 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 D | cm_mem_os.h | 61 #define throw(...) macro
|