HomeSort by relevance Sort by last modified time
    Searched refs:nothrow_t (Results 1 - 25 of 67) sorted by null

1 2 3

  /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&);
  /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
  /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&) {
61 void operator delete[](void* ptr, const std::nothrow_t&) {
  /external/compiler-rt/lib/msan/
msan_new_delete.cc 31 // Fake std::nothrow_t to avoid including <new>.
33 struct nothrow_t {}; struct in namespace:std
46 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
48 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
59 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
61 void operator delete[](void *ptr, std::nothrow_t const&) {
  /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&) {
116 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) {
119 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&)
    [all...]
  /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;

Completed in 906 milliseconds

1 2 3