Home
last modified time | relevance | path

Searched refs:logic_error (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/libc++/src/
H A Dstdexcept.cpp28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) in logic_error() function in std::logic_error
32 logic_error::logic_error(const char* msg) : __imp_(msg) in logic_error() function in std::logic_error
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) in logic_error() function in std::logic_error
40 logic_error&
41 logic_error::operator=(const logic_error& le) _NOEXCEPT in operator =()
49 logic_error::~logic_error() _NOEXCEPT in ~logic_error()
54 logic_error::what() const _NOEXCEPT in what()
H A Doptional.cpp31 : public std::logic_error
34 bad_optional_access() : std::logic_error("Bad optional Access") {} in bad_optional_access()
H A Dfuture.cpp76 : logic_error(__ec.message()), in future_error()
/freebsd-12.1/contrib/libc++/include/
H A Dstdexcept20 class logic_error;
77 class _LIBCPP_EXCEPTION_ABI logic_error
84 explicit logic_error(const char*);
86 logic_error(const logic_error&) _NOEXCEPT;
87 logic_error& operator=(const logic_error&) _NOEXCEPT;
89 virtual ~logic_error() _NOEXCEPT;
112 : public logic_error
122 : public logic_error
132 : public logic_error
142 : public logic_error
[all …]
H A Dfuture49 : public logic_error
503 : public logic_error
509 explicit future_error(future_errc _Ev) : logic_error(), __ec_(make_error_code(_Ev)) {}
/freebsd-12.1/contrib/libstdc++/src/
H A Dstdexcept.cc39 logic_error::logic_error(const string& __arg) in _GLIBCXX_BEGIN_NAMESPACE()
42 logic_error::~logic_error() throw() { } in ~logic_error()
45 logic_error::what() const throw() in what()
49 : logic_error(__arg) { } in domain_error()
52 : logic_error(__arg) { } in invalid_argument()
55 : logic_error(__arg) { } in length_error()
58 : logic_error(__arg) { } in out_of_range()
H A Dfunctexcept.cc64 { throw logic_error(_(__s)); } in __throw_logic_error()
/freebsd-12.1/contrib/libstdc++/include/std/
H A Dstd_stdexcept.h53 class logic_error : public exception in _GLIBCXX_BEGIN_NAMESPACE()
60 logic_error(const string& __arg); in _GLIBCXX_BEGIN_NAMESPACE()
63 ~logic_error() throw(); in _GLIBCXX_BEGIN_NAMESPACE()
73 class domain_error : public logic_error
80 class invalid_argument : public logic_error
88 class length_error : public logic_error
96 class out_of_range : public logic_error
/freebsd-12.1/contrib/libstdc++/include/ext/pb_ds/
H A Dexception.hpp55 struct container_error : public std::logic_error
58 : std::logic_error(__N("pb_ds::container_error")) { } in container_error()
/freebsd-12.1/contrib/libstdc++/config/abi/pre/
H A Dgnu.ver76 std::logic_error*;
/freebsd-12.1/contrib/libstdc++/
H A DChangeLog-1998503 logic_error::what()
H A DChangeLog-20014945 (logic_error): Same.
4953 * include/bits/std_stdexcept.h (logic_error::logic_error): Use
H A DChangeLog-200248 * src/stdexcept.c (logic_error::~logic_error): Likewise.
H A DChangeLog-20055361 * testsuite/testsuite_abi.h (symbol_error): Remove, use logic_error.