Lines Matching refs:nothrow_t
42 struct nothrow_t {};
43 extern const nothrow_t nothrow;
51 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable
54 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable
57 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable
60 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
117 struct _LIBCPP_TYPE_VIS nothrow_t {};
118 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
136 _LIBCPP_NEW_DELETE_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALI…
138 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
149 _LIBCPP_NEW_DELETE_VIS void* operator new[](std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOA…
151 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT;