Home
last modified time | relevance | path

Searched refs:nothrow_t (Results 1 – 15 of 15) sorted by relevance

/ndk/sources/cxx-stl/system/include/
Dnew10 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/
Dnew30 struct nothrow_t {};
31 extern const nothrow_t nothrow;
39 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable
41 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable
44 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable
46 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
86 struct _LIBCPP_TYPE_VIS nothrow_t {};
87 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
99 _LIBCPP_FUNC_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
101 _LIBCPP_FUNC_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dnew.cpp69 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument
98 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument
125 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument
139 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument
148 const nothrow_t nothrow = {};
/ndk/sources/cxx-stl/gabi++/src/
Dnew.cc41 const nothrow_t nothrow = {};
79 void* operator new(std::size_t size, const std::nothrow_t& no) in operator new()
94 void* operator new[](std::size_t size, const std::nothrow_t& no) in operator new[]()
Ddelete.cc48 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[]()
/ndk/tests/device/test-stlport_static-exception/jni/
Ddelete3_1.cpp20 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
Dnew5.cpp7 void * operator new[](size_t, std::nothrow_t const &) throw() in operator new[]()
Doperators27.cpp16 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/
Ddelete3_1.cpp20 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
Dnew5.cpp7 void * operator new[](size_t, std::nothrow_t const &) throw() in operator new[]()
Doperators27.cpp16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; } in operator new() argument
/ndk/sources/cxx-stl/gabi++/include/
Dnew40 struct nothrow_t {};
41 extern const nothrow_t nothrow;
57 void* operator new(std::size_t size, const std::nothrow_t&) throw();
59 void* operator new[](std::size_t size, const std::nothrow_t&) throw();
62 void operator delete[](void* const, std::nothrow_t&) throw();
64 void operator delete(void*, const std::nothrow_t&) throw();
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_new.h66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0003-src-new.cpp-Support-building-with-GAbi.patch14 @@ -144,15 +144,19 @@ operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
19 const nothrow_t nothrow = {};
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp90 const nothrow_t nothrow /* = {} */;