Home
last modified time | relevance | path

Searched refs:runtime_error (Results 1 – 21 of 21) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++11/
H A Dcow-stdexcept.cc64 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 Dcxx11-stdexcept.cc46 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 Dcxx11-ios_failure.cc101 { 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 Dregex.cc39 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
H A Dfunctexcept.cc102 { _GLIBCXX_THROW_OR_ABORT(runtime_error(_(__s))); } in __throw_runtime_error()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/
H A Dstdexcept.cc66 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 Dstdexcept.cc67 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 Dios_failure.cc80 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 Dstdexcept197 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 Dsystem_error341 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 Dstdexcept113 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 Dsystem_error309 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 Dregex_error.h132 class regex_error : public std::runtime_error in _GLIBCXX_VISIBILITY()
158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
H A Dios_base.h233 struct system_error : std::runtime_error in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/
H A Ddebug_allocator.h114 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 Dregex.cc32 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
H A Dfunctexcept.cc86 { throw runtime_error(_(__s)); } in __throw_runtime_error()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dregex_error.h131 class regex_error : public std::runtime_error in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/config/abi/pre/
H A Dgnu.ver160 # 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 Dregex413 : 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 Dregex410 : public std::runtime_error
420 : std::runtime_error("regex_error"), _M_code(__ecode)