Searched refs:logic_error (Results 1 – 12 of 12) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _stdexcept.h | 32 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception { 34 logic_error(const string& __s) : __Named_exception(__s) {} in logic_error() function 36 ~logic_error() _STLP_NOTHROW_INHERENTLY; 48 class _STLP_CLASS_DECLSPEC domain_error : public logic_error { 50 domain_error(const string& __arg) : logic_error(__arg) {} in domain_error() 56 class _STLP_CLASS_DECLSPEC invalid_argument : public logic_error { 58 invalid_argument(const string& __arg) : logic_error(__arg) {} in invalid_argument() 64 class _STLP_CLASS_DECLSPEC length_error : public logic_error { 66 length_error(const string& __arg) : logic_error(__arg) {} in length_error() 72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | stdexcept | 20 class logic_error; 56 class _LIBCPP_EXCEPTION_ABI logic_error 62 explicit logic_error(const string&); 63 explicit logic_error(const char*); 65 logic_error(const logic_error&) _NOEXCEPT; 66 logic_error& operator=(const logic_error&) _NOEXCEPT; 68 virtual ~logic_error() _NOEXCEPT; 91 : public logic_error 94 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {} 95 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {} [all …]
|
D | future | 49 : public logic_error 433 : public logic_error
|
/ndk/sources/cxx-stl/llvm-libc++/src/ |
D | stdexcept.cpp | 99 logic_error::logic_error(const string& msg) in logic_error() function in std::logic_error 105 logic_error::logic_error(const char* msg) in logic_error() function in std::logic_error 111 logic_error::logic_error(const logic_error& le) _NOEXCEPT in logic_error() function in std::logic_error 117 logic_error& 118 logic_error::operator=(const logic_error& le) _NOEXCEPT in operator =() 128 logic_error::~logic_error() _NOEXCEPT in ~logic_error() 135 logic_error::what() const _NOEXCEPT in what()
|
D | future.cpp | 57 : logic_error(__ec.message()), in future_error()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/logic.error/ |
D | logic_error.pass.cpp | 20 static_assert((std::is_base_of<std::exception, std::logic_error>::value), in main() 22 static_assert(std::is_polymorphic<std::logic_error>::value, in main() 26 std::logic_error e(msg); in main() 28 std::logic_error e2(e); in main() 35 std::logic_error e(msg); in main() 37 std::logic_error e2(e); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.future_error/ |
D | types.pass.cpp | 20 std::logic_error*>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/out.of.range/ |
D | out_of_range.pass.cpp | 20 static_assert((std::is_base_of<std::logic_error, std::out_of_range>::value), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/length.error/ |
D | length_error.pass.cpp | 20 static_assert((std::is_base_of<std::logic_error, std::length_error>::value), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/invalid.argument/ |
D | invalid_argument.pass.cpp | 20 static_assert((std::is_base_of<std::logic_error, std::invalid_argument>::value), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/domain.error/ |
D | domain_error.pass.cpp | 20 static_assert((std::is_base_of<std::logic_error, std::domain_error>::value), in main()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | dll_main.cpp | 76 logic_error::~logic_error() _STLP_NOTHROW_INHERENTLY {} in ~logic_error()
|