Home
last modified time | relevance | path

Searched refs:_LIBCXXRT_NOEXCEPT (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/libcxxrt/
H A Dstdexcept.cc34 exception::exception() _LIBCXXRT_NOEXCEPT {} in exception()
36 exception::exception(const exception&) _LIBCXXRT_NOEXCEPT {} in exception()
37 exception& exception::operator=(const exception&) _LIBCXXRT_NOEXCEPT in operator =()
41 const char* exception::what() const _LIBCXXRT_NOEXCEPT in what()
46 bad_alloc::bad_alloc() _LIBCXXRT_NOEXCEPT {} in bad_alloc()
48 bad_alloc::bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT {} in bad_alloc()
49 bad_alloc& bad_alloc::operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT in operator =()
53 const char* bad_alloc::what() const _LIBCXXRT_NOEXCEPT in what()
60 bad_cast::bad_cast() _LIBCXXRT_NOEXCEPT {} in bad_cast()
62 bad_cast::bad_cast(const bad_cast&) _LIBCXXRT_NOEXCEPT {} in bad_cast()
[all …]
H A Dstdexcept.h40 exception() _LIBCXXRT_NOEXCEPT;
41 exception(const exception&) _LIBCXXRT_NOEXCEPT;
42 exception& operator=(const exception&) _LIBCXXRT_NOEXCEPT;
44 virtual const char* what() const _LIBCXXRT_NOEXCEPT;
54 bad_alloc() _LIBCXXRT_NOEXCEPT;
55 bad_alloc(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
56 bad_alloc& operator=(const bad_alloc&) _LIBCXXRT_NOEXCEPT;
58 virtual const char* what() const _LIBCXXRT_NOEXCEPT;
66 bad_cast() _LIBCXXRT_NOEXCEPT;
67 bad_cast(const bad_cast&) _LIBCXXRT_NOEXCEPT;
[all …]
H A Dcxxabi.h45 #define _LIBCXXRT_NOEXCEPT throw() macro
47 #define _LIBCXXRT_NOEXCEPT noexcept macro
52 #define _LIBCXXRT_NOEXCEPT
214 void *__cxa_allocate_exception(size_t thrown_size) _LIBCXXRT_NOEXCEPT;
216 void __cxa_free_exception(void* thrown_exception) _LIBCXXRT_NOEXCEPT;
219 void *object, std::type_info* tinfo, void (*dest)(void *)) _LIBCXXRT_NOEXCEPT;
H A Dmemory.cc139 void* operator new(size_t size, const std::nothrow_t &) _LIBCXXRT_NOEXCEPT in operator new()
146 void operator delete(void * ptr) _LIBCXXRT_NOEXCEPT in operator delete()
160 void * operator new[](size_t size, const std::nothrow_t &) _LIBCXXRT_NOEXCEPT in operator new[]()
167 void operator delete[](void * ptr) _LIBCXXRT_NOEXCEPT in operator delete[]()
177 void operator delete(void * ptr, size_t) _LIBCXXRT_NOEXCEPT in operator delete()
184 void operator delete[](void * ptr, size_t) _LIBCXXRT_NOEXCEPT in operator delete[]()
H A Dexception.cc124 extern "C" void __cxa_free_exception(void *thrown_exception) _LIBCXXRT_NOEXCEPT;
244 virtual ~exception() _LIBCXXRT_NOEXCEPT;
245 virtual const char* what() const _LIBCXXRT_NOEXCEPT;
299 [[noreturn]] void terminate(void) _LIBCXXRT_NOEXCEPT;
679 extern "C" void *__cxa_allocate_exception(size_t thrown_size) _LIBCXXRT_NOEXCEPT in __cxa_allocate_exception()
701 extern "C" void __cxa_free_exception(void *thrown_exception) _LIBCXXRT_NOEXCEPT in __cxa_free_exception()
756 extern "C" void *__cxa_begin_catch(void *e) _LIBCXXRT_NOEXCEPT;
803 void *object, std::type_info* tinfo, void (*dest)(void *)) _LIBCXXRT_NOEXCEPT { in __cxa_init_primary_exception()
1254 extern "C" void *__cxa_begin_catch(void *e) _LIBCXXRT_NOEXCEPT
1448 extern "C" void __cxa_call_terminate(void*exception) _LIBCXXRT_NOEXCEPT
[all …]
H A Dnoexception.cc33 bool uncaught_exception() _LIBCXXRT_NOEXCEPT in uncaught_exception()
41 int uncaught_exceptions() _LIBCXXRT_NOEXCEPT in uncaught_exceptions()