Searched refs:nothrow_t (Results 1 - 11 of 11) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc40 void *operator new(size_t size, std::nothrow_t const&) throw()
42 void *operator new[](size_t size, std::nothrow_t const&) throw()
52 void operator delete(void *ptr, std::nothrow_t const&) throw()
54 void operator delete[](void *ptr, std::nothrow_t const&) throw()
/external/valgrind/main/massif/tests/
H A Doverloaded-new.cpp3 // 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 ()
H A Dnew-cpp.cpp3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
10 using std::nothrow_t;
/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/webkit/Source/JavaScriptCore/wtf/wince/
H A DFastMallocWinCE.h74 static inline void* operator new(size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
75 static inline void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
76 static inline void* operator new[](size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); }
77 static inline void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
/external/chromium/base/allocator/
H A Dgeneric_allocators.cc43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
/external/webkit/Source/JavaScriptCore/wtf/
H A DFastMalloc.h226 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
228 WTF_PRIVATE_INLINE void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); }
230 WTF_PRIVATE_INLINE void* operator new[](size_t size, const std::nothrow_t&) throw() { return fastMalloc(size); }
232 WTF_PRIVATE_INLINE void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); }
H A DFastMalloc.cpp4083 void* operator new(size_t size, const std::nothrow_t&) __THROW {
4094 void operator delete(void* p, const std::nothrow_t&) __THROW {
4110 void* operator new[](size_t size, const std::nothrow_t&) __THROW {
4121 void operator delete[](void* p, const std::nothrow_t&) __THROW {
/external/stlport/test/eh/
H A Dnc_alloc.cpp212 void* _STLP_CALL operator new(size_t size, const EH_STD::nothrow_t&) throw() {
228 void* _STLP_CALL operator new[](size_t size, const EH_STD::nothrow_t&) throw() {
/external/stlport/src/
H A Ddll_main.cpp90 const nothrow_t nothrow /* = {} */;
/external/valgrind/tsan/
H A Dts_util.h189 using STD::nothrow_t;

Completed in 249 milliseconds