/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++11/ |
H A D | cow-stdexcept.cc | 64 runtime_error::runtime_error(const runtime_error& e) noexcept in runtime_error() function in std::runtime_error 67 runtime_error& 68 runtime_error::operator=(const runtime_error& e) noexcept in operator =() 88 runtime_error::runtime_error(const char* __arg) in runtime_error() function in std::runtime_error 92 : runtime_error(__arg) { } in range_error() 95 : runtime_error(__arg) { } in overflow_error() 98 : runtime_error(__arg) { } in underflow_error() 344 std::runtime_error* le = (std::runtime_error*) e; in _txnal_runtime_error_get_msg() 431 CTORDTOR(13runtime_error, std::runtime_error, runtime_error) 434 _ZGTtNKSt13runtime_error4whatEv(const std::runtime_error* that) in _ZGTtNKSt13runtime_error4whatEv() [all …]
|
H A D | cxx11-stdexcept.cc | 46 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error 65 : runtime_error(__arg) { } in range_error() 68 : runtime_error(__arg) { } in overflow_error() 71 : runtime_error(__arg) { } in underflow_error()
|
H A D | cxx11-ios_failure.cc | 101 { return runtime_error::what(); } in what() 115 { __construct_ios_failure(buf, runtime_error::what()); } in __ios_failure() 124 alignas(runtime_error) unsigned char buf[sizeof(runtime_error)];
|
H A D | regex.cc | 39 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
|
H A D | functexcept.cc | 102 { _GLIBCXX_THROW_OR_ABORT(runtime_error(_(__s))); } in __throw_runtime_error()
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/ |
H A D | stdexcept.cc | 66 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error 69 runtime_error::~runtime_error() _GLIBCXX_USE_NOEXCEPT { } in ~runtime_error() 72 runtime_error::what() const _GLIBCXX_USE_NOEXCEPT in what() 76 : runtime_error(__arg) { } in range_error() 81 : runtime_error(__arg) { } in overflow_error() 86 : runtime_error(__arg) { } in underflow_error()
|
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++98/ |
H A D | stdexcept.cc | 67 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error 70 runtime_error::~runtime_error() _GLIBCXX_USE_NOEXCEPT { } in ~runtime_error() 73 runtime_error::what() const _GLIBCXX_USE_NOEXCEPT in what() 77 : runtime_error(__arg) { } in range_error() 82 : runtime_error(__arg) { } in overflow_error() 87 : runtime_error(__arg) { } in underflow_error()
|
H A D | ios_failure.cc | 80 typedef char S[1 / (sizeof(ios::failure) <= sizeof(runtime_error))]; 81 typedef char A[1 / (__alignof(ios::failure) <= __alignof(runtime_error))];
|
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/std/ |
H A D | stdexcept | 197 class runtime_error : public exception 204 runtime_error(const string& __arg) _GLIBCXX_TXN_SAFE; 208 runtime_error(const char*) _GLIBCXX_TXN_SAFE; 212 runtime_error(const runtime_error&) _GLIBCXX_USE_NOEXCEPT; 213 runtime_error& operator=(const runtime_error&) _GLIBCXX_USE_NOEXCEPT; 216 virtual ~runtime_error() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT; 230 class range_error : public runtime_error 241 class overflow_error : public runtime_error 252 class underflow_error : public runtime_error
|
H A D | system_error | 341 class system_error : public std::runtime_error 348 : runtime_error(__ec.message()), _M_code(__ec) { } 351 : runtime_error(__what + ": " + __ec.message()), _M_code(__ec) { } 354 : runtime_error(__what + (": " + __ec.message())), _M_code(__ec) { } 360 : runtime_error(error_code(__v, __ecat).message()), 364 : runtime_error(__what + ": " + error_code(__v, __ecat).message()),
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/std/ |
H A D | stdexcept | 113 class runtime_error : public exception 120 runtime_error(const string& __arg); 122 virtual ~runtime_error() _GLIBCXX_USE_NOEXCEPT; 131 class range_error : public runtime_error 139 class overflow_error : public runtime_error 147 class underflow_error : public runtime_error
|
H A D | system_error | 309 class system_error : public std::runtime_error 316 : runtime_error(__ec.message()), _M_code(__ec) { } 319 : runtime_error(__what + ": " + __ec.message()), _M_code(__ec) { } 325 * : runtime_error(__what + (": " + __ec.message())), _M_code(__ec) { } 328 * : runtime_error(__what + (": " + __ec.message())), 333 : runtime_error(error_code(__v, __ecat).message()), 337 : runtime_error(__what + ": " + error_code(__v, __ecat).message()),
|
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
H A D | regex_error.h | 132 class regex_error : public std::runtime_error in _GLIBCXX_VISIBILITY() 158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
|
H A D | ios_base.h | 233 struct system_error : std::runtime_error in _GLIBCXX_VISIBILITY()
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
H A D | debug_allocator.h | 114 throw std::runtime_error("debug_allocator::deallocate" in _GLIBCXX_VISIBILITY() 120 throw std::runtime_error("debug_allocator::deallocate null pointer"); in _GLIBCXX_VISIBILITY()
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++11/ |
H A D | regex.cc | 32 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
|
H A D | functexcept.cc | 86 { throw runtime_error(_(__s)); } in __throw_runtime_error()
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
H A D | regex_error.h | 131 class regex_error : public std::runtime_error in _GLIBCXX_VISIBILITY()
|
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/config/abi/pre/ |
H A D | gnu.ver | 160 # std::runtime_error::r* 161 std::runtime_error::what*; 162 # std::runtime_error::~r*;
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
H A D | regex | 413 : public std::runtime_error 423 : std::runtime_error("regex_error"), _M_code(__ecode)
|
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
H A D | regex | 410 : public std::runtime_error 420 : std::runtime_error("regex_error"), _M_code(__ecode)
|