/bionic/libstdc++/include/ |
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&) throw(); 21 void operator delete[](void*, const std::nothrow_t&) throw();
|
/ndk/sources/cxx-stl/system/include/ |
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&);
|
/prebuilts/ndk/current/sources/cxx-stl/system/include/ |
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&);
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
del.cc | 6 operator delete (void *ptr, const std::nothrow_t&) throw () 26 operator delete[] (void *ptr, const std::nothrow_t&) throw ()
|
new.cc | 9 operator new (std::size_t sz, const std::nothrow_t&) throw() 44 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
|
/external/valgrind/massif/tests/ |
new-cpp.cpp | 3 // operator new(unsigned, std::nothrow_t const&) 4 // operator new[](unsigned, std::nothrow_t const&) 10 using std::nothrow_t;
|
overloaded-new.cpp | 3 // operator new(unsigned, std::nothrow_t const&) 4 // operator new[](unsigned, std::nothrow_t const&) 10 using std::nothrow_t; 22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw () 32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
delete3_1.cpp | 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw() 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw()
|
new5.cpp | 7 void * operator new[](size_t, std::nothrow_t const &) throw()
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
delete3_1.cpp | 20 void* operator new(size_t numBytes, SomeClass&, const std::nothrow_t&) throw() 25 void operator delete(void* pMemory, SomeClass&, const std::nothrow_t&) throw()
|
new5.cpp | 7 void * operator new[](size_t, std::nothrow_t const &) throw()
|
/bionic/libc/bionic/ |
new.cpp | 23 const std::nothrow_t std::nothrow = {}; 49 void* operator new(std::size_t size, const std::nothrow_t&) { 53 void* operator new[](std::size_t size, const std::nothrow_t&) { 57 void operator delete(void* ptr, const std::nothrow_t&) throw() { 61 void operator delete[](void* ptr, const std::nothrow_t&) throw() {
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_new_delete.cc | 21 struct nothrow_t {}; struct in namespace:std 55 void *operator new(__sanitizer::uptr size, std::nothrow_t const&); 56 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) { 61 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&); 62 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) { 87 void operator delete(void *ptr, std::nothrow_t const&); 88 void operator delete(void *ptr, std::nothrow_t const&) { 93 void operator delete[](void *ptr, std::nothrow_t const&); 94 void operator delete[](void *ptr, std::nothrow_t const&) {
|
/abi/cpp/include/ |
new | 37 struct nothrow_t {}; 38 extern const nothrow_t nothrow; 44 void* operator new(std::size_t size, const std::nothrow_t&) throw(); 46 void operator delete(void*, const std::nothrow_t&) throw(); 48 void* operator new[](std::size_t size, const std::nothrow_t&) throw(); 50 void operator delete[](void* const, std::nothrow_t&) throw();
|
/external/compiler-rt/lib/msan/ |
msan_new_delete.cc | 24 // Fake std::nothrow_t to avoid including <new>. 26 struct nothrow_t {}; struct in namespace:std 39 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } 41 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } 52 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; } 54 void operator delete[](void *ptr, std::nothrow_t const&) {
|
/prebuilts/ndk/current/sources/cxx-stl/gabi++/include/ |
new | 37 struct nothrow_t {}; 38 extern const nothrow_t nothrow; 44 void* operator new(std::size_t size, const std::nothrow_t&) throw(); 46 void* operator new[](std::size_t size, const std::nothrow_t&) throw(); 49 void operator delete[](void* const, std::nothrow_t&) throw(); 51 void operator delete(void*, const std::nothrow_t&) throw();
|
/external/clang/test/CodeGen/ |
address-sanitizer-and-array-cookie.cpp | 6 struct nothrow_t {}; struct in namespace:std 7 std::nothrow_t nothrow; 9 void *operator new[](size_t, const std::nothrow_t &) throw();
|
/external/libcxx/include/ |
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 54 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 57 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 60 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable 117 struct _LIBCPP_TYPE_VIS nothrow_t {}; 118 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow; 136 _LIBCPP_NEW_DELETE_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS; 138 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
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 _NOALIAS; 134 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
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 _NOALIAS; 134 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT [all...] |
/external/compiler-rt/lib/asan/ |
asan_new_delete.cc | 35 // Fake std::nothrow_t to avoid including <new>. 37 struct nothrow_t {}; struct in namespace:std 66 void *operator new(size_t size, std::nothrow_t const&) 69 void *operator new[](size_t size, std::nothrow_t const&) 79 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) { 82 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) { 101 void operator delete(void *ptr, std::nothrow_t const&) { 105 void operator delete[](void *ptr, std::nothrow_t const&) { 126 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) { 129 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) [all...] |
/ndk/sources/cxx-stl/gabi++/include/ |
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();
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
new | 67 struct nothrow_t { }; 69 extern const nothrow_t nothrow; 99 void* operator new(std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 101 void* operator new[](std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 103 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 105 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
new | 67 struct nothrow_t { }; 69 extern const nothrow_t nothrow; 99 void* operator new(std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 101 void* operator new[](std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 103 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 105 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
new | 67 struct nothrow_t { }; 69 extern const nothrow_t nothrow; 99 void* operator new(std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 101 void* operator new[](std::size_t, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 103 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT 105 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
|