/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
get_mangled_names.cc | 52 #include <new> // for nothrow_t 61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; } 62 void operator delete(void* p, const std::nothrow_t&) throw() { } 63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; } 64 void operator delete[](void* p, const std::nothrow_t&) throw() { }
|
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
get_mangled_names.cc | 52 #include <new> // for nothrow_t 61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; } 62 void operator delete(void* p, const std::nothrow_t&) throw() { } 63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; } 64 void operator delete[](void* p, const std::nothrow_t&) throw() { }
|
/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&); 21 void operator delete[](void*, const std::nothrow_t&);
|
/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/4/platforms/android-5/arch-x86/usr/include/ |
new | 8 struct nothrow_t {}; 9 extern const nothrow_t nothrow; 16 void* operator new(std::size_t, const std::nothrow_t&); 17 void* operator new[](std::size_t, const std::nothrow_t&); 18 void operator delete(void*, const std::nothrow_t&); 19 void operator delete[](void*, const std::nothrow_t&);
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/ |
new | 8 struct nothrow_t {}; 9 extern const nothrow_t nothrow; 16 void* operator new(std::size_t, const std::nothrow_t&); 17 void* operator new[](std::size_t, const std::nothrow_t&); 18 void operator delete(void*, const std::nothrow_t&); 19 void operator delete[](void*, const std::nothrow_t&);
|
/prebuilts/ndk/5/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/6/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/7/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/8/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/9/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&);
|
/bionic/libstdc++/src/ |
new.cpp | 4 const std::nothrow_t std::nothrow = {}; 34 void* operator new(std::size_t size, const std::nothrow_t&) 39 void* operator new[](std::size_t size, const std::nothrow_t&) 44 void operator delete(void* ptr, const std::nothrow_t&) 49 void operator delete[](void* ptr, const std::nothrow_t&)
|
/external/compiler-rt/lib/msan/ |
msan_new_delete.cc | 30 // Fake std::nothrow_t to avoid including <new>. 32 struct nothrow_t {}; struct in namespace:std 42 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } 43 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } 50 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; } 51 void operator delete[](void *ptr, std::nothrow_t const&) {
|
/external/compiler-rt/lib/asan/ |
asan_new_delete.cc | 34 // Fake std::nothrow_t to avoid including <new>. 36 struct nothrow_t {}; struct in namespace:std 56 void *operator new(size_t size, std::nothrow_t const&) 59 void *operator new[](size_t size, std::nothrow_t const&) 69 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) { 72 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) { 87 void operator delete(void *ptr, std::nothrow_t const&) 90 void operator delete[](void *ptr, std::nothrow_t const&) 100 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) { 103 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) [all...] |
/ndk/sources/cxx-stl/gabi++/src/ |
delete.cc | 48 void operator delete(void* ptr, const std::nothrow_t &) _GABIXX_NOEXCEPT 55 void operator delete[](void* ptr, const std::nothrow_t &nt) _GABIXX_NOEXCEPT
|
/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()
|
operators27.cpp | 16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; }
|
/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()
|
operators27.cpp | 16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; }
|
/external/valgrind/main/massif/tests/ |
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 ()
|
new-cpp.cpp | 3 // operator new(unsigned, std::nothrow_t const&) 4 // operator new[](unsigned, std::nothrow_t const&) 10 using std::nothrow_t;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/ |
tcmalloc.h | 79 struct nothrow_t; 120 const std::nothrow_t&) __THROW; 123 const std::nothrow_t&) __THROW; 126 const std::nothrow_t&) __THROW; 129 const std::nothrow_t&) __THROW;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/gperftools/ |
tcmalloc.h | 69 struct nothrow_t; 110 const std::nothrow_t&) __THROW; 113 const std::nothrow_t&) __THROW; 116 const std::nothrow_t&) __THROW; 119 const std::nothrow_t&) __THROW;
|