/ndk/sources/cxx-stl/system/include/ |
D | new | 10 struct nothrow_t {}; 11 extern const nothrow_t nothrow; 18 void* operator new(std::size_t, const std::nothrow_t&); 19 void* operator new[](std::size_t, const std::nothrow_t&); 20 void operator delete(void*, const std::nothrow_t&); 21 void operator delete[](void*, const std::nothrow_t&);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | new | 30 struct nothrow_t {}; 31 extern const nothrow_t nothrow; 39 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 41 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 44 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 46 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable 86 struct _LIBCPP_TYPE_VIS nothrow_t {}; 87 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow; 99 _LIBCPP_FUNC_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS; 101 _LIBCPP_FUNC_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | new.cpp | 69 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument 98 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument 125 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument 139 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument 148 const nothrow_t nothrow = {};
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | new.cc | 41 const nothrow_t nothrow = {}; 79 void* operator new(std::size_t size, const std::nothrow_t& no) in operator new() 94 void* operator new[](std::size_t size, const std::nothrow_t& no) in operator new[]()
|
D | delete.cc | 48 void operator delete(void* ptr, const std::nothrow_t &) _GABIXX_NOEXCEPT in operator delete() argument 55 void operator delete[](void* ptr, const std::nothrow_t &nt) _GABIXX_NOEXCEPT in operator delete[]()
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | delete3_1.cpp | 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw() in operator new() argument 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw() in operator delete() argument
|
D | new5.cpp | 7 void * operator new[](size_t, std::nothrow_t const &) throw() in operator new[]()
|
D | operators27.cpp | 16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; } in operator new() argument
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | delete3_1.cpp | 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw() in operator new() argument 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw() in operator delete() argument
|
D | new5.cpp | 7 void * operator new[](size_t, std::nothrow_t const &) throw() in operator new[]()
|
D | operators27.cpp | 16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; } in operator new() argument
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | new | 40 struct nothrow_t {}; 41 extern const nothrow_t nothrow; 57 void* operator new(std::size_t size, const std::nothrow_t&) throw(); 59 void* operator new[](std::size_t size, const std::nothrow_t&) throw(); 62 void operator delete[](void* const, std::nothrow_t&) throw(); 64 void operator delete(void*, const std::nothrow_t&) throw();
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _new.h | 66 struct nothrow_t {}; struct 67 # define nothrow nothrow_t() 97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0003-src-new.cpp-Support-building-with-GAbi.patch | 14 @@ -144,15 +144,19 @@ operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT 19 const nothrow_t nothrow = {};
|
/ndk/sources/cxx-stl/stlport/src/ |
D | dll_main.cpp | 90 const nothrow_t nothrow /* = {} */;
|