Home
last modified time | relevance | path

Searched refs:nothrow_t (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dnew.cpp24 const std::nothrow_t std::nothrow = {};
50 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() argument
54 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]() argument
58 void operator delete(void* ptr, const std::nothrow_t&) throw() { in operator delete() argument
62 void operator delete[](void* ptr, const std::nothrow_t&) throw() { in operator delete[]() argument
/bionic/libstdc++/include/
Dnew11 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();