/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 | 42 struct nothrow_t {}; 43 extern const nothrow_t nothrow; 51 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 53 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 56 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 58 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable 113 struct _LIBCPP_TYPE_VIS nothrow_t {}; 114 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow; 132 _LIBCPP_NEW_DELETE_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALI… 134 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | new.cpp | 74 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument 103 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument 130 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument 144 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument 155 const nothrow_t nothrow = {};
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_new_delete.cpp | 69 operator new(size_t size, const std::nothrow_t&) in operator new() argument 110 operator new[](size_t size, const std::nothrow_t&) in operator new[]() argument 154 operator delete(void* ptr, const std::nothrow_t&) in operator delete() argument 188 operator delete[] (void* ptr, const std::nothrow_t&) in operator delete[]() argument
|
/ndk/sources/cxx-stl/gabi++/src/ |
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[]()
|
D | new.cc | 41 const nothrow_t nothrow = {}; 113 void* operator new(std::size_t size, const std::nothrow_t& no) in operator new() 128 void* operator new[](std::size_t size, const std::nothrow_t& no) in operator new[]()
|
/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/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/gabi++/include/ |
D | new | 40 struct nothrow_t {}; 41 extern const nothrow_t nothrow; 75 void* operator new(std::size_t size, const std::nothrow_t&) throw(); 77 void* operator new[](std::size_t size, const std::nothrow_t&) throw(); 80 void operator delete[](void* const, std::nothrow_t&) throw(); 82 void operator delete(void*, const std::nothrow_t&) throw();
|
/ndk/sources/cxx-stl/stlport/src/ |
D | dll_main.cpp | 90 const nothrow_t nothrow /* = {} */;
|