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

1 2

  /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&);
  /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 28 // Fake std::nothrow_t to avoid including <new>.
30 struct nothrow_t {}; struct in namespace:std
40 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; }
48 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
49 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 47 void operator delete(void* ptr, const std::nothrow_t &) throw()
54 void operator delete[](void* ptr, const std::nothrow_t &nt) throw()
new.cc 40 const nothrow_t nothrow = {};
78 void* operator new(std::size_t size, const std::nothrow_t& no) throw() {
92 void* operator new[](std::size_t size, const std::nothrow_t& no) 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()
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;
  /ndk/sources/cxx-stl/llvm-libc++/src/
new.cpp 69 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
98 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
125 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
139 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
147 const nothrow_t nothrow = {};
  /external/stlport/stlport/stl/
_new.h 66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_new.h 66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_new.h 66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;

Completed in 482 milliseconds

1 2