Searched defs:nothrow_t (Results 1 – 5 of 5) sorted by relevance
/external/stlport/stlport/stl/ |
D | _new.h | 66 struct nothrow_t {}; struct
|
/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() 75 static inline void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); } in delete()
|
/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() 228 WTF_PRIVATE_INLINE void operator delete(void* p, const std::nothrow_t&) throw() { fastFree(p); } in delete()
|
D | FastMalloc.cpp | 4083 void* operator new(size_t size, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() 4094 void operator delete(void* p, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() 4110 void* operator new[](size_t size, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary() 4121 void operator delete[](void* p, const std::nothrow_t&) __THROW { in CreateCacheIfNecessary()
|
/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() 228 void* _STLP_CALL operator new[](size_t size, const EH_STD::nothrow_t&) throw() { in operator new[]()
|