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/
Dnew42 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 _NOALI…
134 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dnew.cpp74 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT in operator new() argument
103 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT in operator new[]() argument
130 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete() argument
144 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT in operator delete[]() argument
155 const nothrow_t nothrow = {};
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_new_delete.cpp69 operator new(size_t size, const std::nothrow_t&) in operator new() argument
110 operator new[](size_t size, const std::nothrow_t&) in operator new[]() argument
154 operator delete(void* ptr, const std::nothrow_t&) in operator delete() argument
188 operator delete[] (void* ptr, const std::nothrow_t&) in operator delete[]() argument
/ndk/sources/cxx-stl/gabi++/src/
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[]()
Dnew.cc41 const nothrow_t nothrow = {};
113 void* operator new(std::size_t size, const std::nothrow_t& no) in operator new()
128 void* operator new[](std::size_t size, const std::nothrow_t& no) in operator new[]()
/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/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/gabi++/include/
Dnew40 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();
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp90 const nothrow_t nothrow /* = {} */;