Searched defs:nothrow_t (Results 1 - 6 of 6) sorted by relevance

/external/stlport/stlport/stl/
H A D_new.h66 struct nothrow_t {}; struct
67 # define nothrow nothrow_t()
97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc35 // 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 cons
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_new_delete.cc31 // 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/clang/test/CodeGenCXX/
H A Dnew.cpp23 struct nothrow_t {}; struct in namespace:std
25 std::nothrow_t nothrow;
34 void *operator new(size_t, const std::nothrow_t &) throw();
35 void *operator new[](size_t, const std::nothrow_t &) throw();
36 void operator delete(void *, const std::nothrow_t &) throw();
37 void operator delete[](void *, const std::nothrow_t &) throw();
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h75 struct nothrow_t {}; struct in namespace:std
77 extern const nothrow_t nothrow;
203 void* operator new(std::size_t, const std::nothrow_t&) throw();
204 void* operator new[](std::size_t, const std::nothrow_t&) throw();
205 void operator delete(void*, const std::nothrow_t&) throw();
206 void operator delete[](void*, const std::nothrow_t&) throw();
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc113 struct nothrow_t {}; struct in namespace:std
550 void *operator new(__sanitizer::uptr size, std::nothrow_t const&);
551 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) {
556 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&);
557 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) {
582 void operator delete(void *ptr, std::nothrow_t const&);
583 void operator delete(void *ptr, std::nothrow_t const&) {
588 void operator delete[](void *ptr, std::nothrow_t const&);
589 void operator delete[](void *ptr, std::nothrow_t const&) {

Completed in 160 milliseconds