Searched refs:nothrow_t (Results 1 – 2 of 2) sorted by relevance
24 const std::nothrow_t std::nothrow = {};50 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() argument54 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]() argument58 void operator delete(void* ptr, const std::nothrow_t&) throw() { in operator delete() argument62 void operator delete[](void* ptr, const std::nothrow_t&) throw() { in operator delete[]() argument
11 struct nothrow_t {};12 extern const nothrow_t nothrow;16 void* operator new(std::size_t, const std::nothrow_t&);19 void operator delete(void*, const std::nothrow_t&) throw();22 void* operator new[](std::size_t, const std::nothrow_t&);25 void operator delete[](void*, const std::nothrow_t&) throw();