Lines Matching refs:_NOEXCEPT

86     bad_alloc() _NOEXCEPT;
87 virtual ~bad_alloc() _NOEXCEPT;
88 virtual const char* what() const _NOEXCEPT;
95 bad_array_new_length() _NOEXCEPT;
96 virtual ~bad_array_new_length() _NOEXCEPT;
97 virtual const char* what() const _NOEXCEPT;
106 bad_array_length() _NOEXCEPT;
107 virtual ~bad_array_length() _NOEXCEPT;
108 virtual const char* what() const _NOEXCEPT;
120 _LIBCPP_FUNC_VIS new_handler set_new_handler(new_handler) _NOEXCEPT;
121 _LIBCPP_FUNC_VIS new_handler get_new_handler() _NOEXCEPT;
136 _LIBCPP_NEW_DELETE_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALI…
137 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p) _NOEXCEPT;
138 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
141 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, std::size_t __sz) _NOEXCEPT;
149 _LIBCPP_NEW_DELETE_VIS void* operator new[](std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOA…
150 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p) _NOEXCEPT;
151 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT;
154 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p, std::size_t __sz) _NOEXCEPT;
157 inline _LIBCPP_INLINE_VISIBILITY void* operator new (std::size_t, void* __p) _NOEXCEPT {return __p…
158 inline _LIBCPP_INLINE_VISIBILITY void* operator new[](std::size_t, void* __p) _NOEXCEPT {return __p…
159 inline _LIBCPP_INLINE_VISIBILITY void operator delete (void*, void*) _NOEXCEPT {}
160 inline _LIBCPP_INLINE_VISIBILITY void operator delete[](void*, void*) _NOEXCEPT {}