Searched refs:nothrow_t (Results 1 – 13 of 13) sorted by relevance
/external/valgrind/main/massif/tests/ |
D | overloaded-new.cpp | 10 using std::nothrow_t; 22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw () in operator new() 32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw () in operator new[]()
|
D | new-cpp.cpp | 10 using std::nothrow_t;
|
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
D | FastMallocWinCE.h | 74 static inline void* operator new(size_t s, const std::nothrow_t&) throw() { return fastMalloc(s); } in new() argument 75 static inline void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); } in delete() argument 76 static inline void* operator new[](size_t s, const std::nothrow_t&) throw() { return fastMalloc(s);… in throw() 77 static inline void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); } in throw()
|
/external/stlport/stlport/stl/ |
D | _new.h | 66 struct nothrow_t {}; struct 67 # define nothrow nothrow_t() 97 using _STLP_VENDOR_EXCEPT_STD::nothrow_t;
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | FastMalloc.h | 226 WTF_PRIVATE_INLINE void* operator new(size_t size, const std::nothrow_t&) throw() { return fastMall… in new() argument 228 WTF_PRIVATE_INLINE void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); } in delete() argument 230 WTF_PRIVATE_INLINE void* operator new[](size_t size, const std::nothrow_t&) throw() { return fastMa… in throw() 232 WTF_PRIVATE_INLINE void operator delete[](void* p, const std::nothrow_t&) throw() { fastFree(p); } in throw()
|
D | FastMalloc.cpp | 4083 void* operator new(size_t size, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() argument 4094 void operator delete(void* p, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() argument 4110 void* operator new[](size_t size, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() argument 4121 void operator delete[](void* p, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() argument
|
/external/chromium/base/allocator/ |
D | generic_allocators.cc | 43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW { in operator new() 47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW { in operator new[]()
|
/external/stlport/test/eh/ |
D | nc_alloc.cpp | 212 void* _STLP_CALL operator new(size_t size, const EH_STD::nothrow_t&) throw() { in operator new() argument 228 void* _STLP_CALL operator new[](size_t size, const EH_STD::nothrow_t&) throw() { in operator new[]() argument
|
/external/stlport/src/ |
D | dll_main.cpp | 90 const nothrow_t nothrow /* = {} */;
|
/external/stlport/etc/ |
D | ChangeLog-4.0 | 481 * <new> fixed to import nothrow and nothrow_t
|
D | ChangeLog-5.1 | 7398 * _new.h : class nothrow_t changed to struct nothrow_t (Thanks Francois Dumont)
|
/external/valgrind/main/ |
D | NEWS | 2886 operator new(unsigned, std::nothrow_t const&) 2887 operator new[](unsigned, std::nothrow_t const&)
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 27169 Override operator new/delete with const std::nothrow_t& as the second 27174 std::nothrow_t& must be overrided because some standard template 27178 std::nothrow_t&) is freed by delete(void* p). This causes the umatched
|