Lines Matching refs:nothrow_t
30 struct nothrow_t {};
31 extern const nothrow_t nothrow;
39 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable
41 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable
44 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable
46 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
86 struct _LIBCPP_TYPE_VIS nothrow_t {};
87 extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
99 _LIBCPP_FUNC_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
101 _LIBCPP_FUNC_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
108 _LIBCPP_FUNC_VIS void* operator new[](std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
110 _LIBCPP_FUNC_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT;