Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstdexcept.cpp30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) in logic_error() function in std::logic_error
34 logic_error::logic_error(const char* msg) : __imp_(msg) in logic_error() function in std::logic_error
38 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) in logic_error() function in std::logic_error
42 logic_error&
43 logic_error::operator=(const logic_error& le) _NOEXCEPT in operator =()
51 logic_error::~logic_error() _NOEXCEPT in ~logic_error()
56 logic_error::what() const _NOEXCEPT in what()
Dfuture.cpp74 : logic_error(__ec.message()), in future_error()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stdexcept.h32 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++/libcxx/include/
Dstdexcept20 class logic_error;
64 class _LIBCPP_EXCEPTION_ABI logic_error
70 explicit logic_error(const string&);
71 explicit logic_error(const char*);
73 logic_error(const logic_error&) _NOEXCEPT;
74 logic_error& operator=(const logic_error&) _NOEXCEPT;
76 virtual ~logic_error() _NOEXCEPT;
99 : public logic_error
102 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {}
103 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {}
[all …]
Dfuture49 : public logic_error
501 : public logic_error
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/logic.error/
Dlogic_error.pass.cpp20 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/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
Dvalidation.hpp40 class logic_error class
48 explicit logic_error( cstring msg ) : m_msg( new dstring( msg.begin(), msg.size() ) ) {} in logic_error() function in boost::BOOST_RT_PARAM_NAMESPACE::logic_error
49 ~logic_error() throw() {} in ~logic_error()
65 throw BOOST_RT_PARAM_NAMESPACE::logic_error( msg.str() ); in report_logic_error()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dstdexcept.cpp23 logic_error::~logic_error() _NOEXCEPT {} in ~logic_error()
26 logic_error::what() const _NOEXCEPT in what()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.bad_optional_access/
Dderive.pass.cpp22 static_assert(std::is_base_of<std::logic_error, bad_optional_access>::value, ""); in main()
23 static_assert(std::is_convertible<bad_optional_access*, std::logic_error*>::value, ""); in main()
/ndk/sources/cxx-stl/gabi++/src/
Dstdexcept.cc136 logic_error::~logic_error() _NOEXCEPT in ~logic_error()
143 logic_error::what() const _NOEXCEPT in what()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/
Dtypes.pass.cpp20 std::logic_error*>::value), ""); in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
Dvalidation.ipp23 #include <boost/test/utils/runtime/validation.hpp> // BOOST_RT_PARAM_NAMESPACE::logic_error
54 throw BOOST_RT_PARAM_NAMESPACE::logic_error( msg.str() );
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/domain.error/
Ddomain_error.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::domain_error>::value), in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/length.error/
Dlength_error.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::length_error>::value), in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/out.of.range/
Dout_of_range.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::out_of_range>::value), in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/invalid.argument/
Dinvalid_argument.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::invalid_argument>::value), in main()
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp76 logic_error::~logic_error() _STLP_NOTHROW_INHERENTLY {} in ~logic_error()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/
Doptional81 : public logic_error
123 : public logic_error
128 : logic_error(__arg) {}
130 : logic_error(__arg) {}
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dunit_test_parameters.ipp331 catch( rt::logic_error const& ex ) {
Dexecution_monitor.ipp1285 catch( std::logic_error const& ex )
1288 "std::logic_error: %s", ex.what() ); }
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk1395 $(call gen-test, diagnostics/std.exceptions/logic.error/logic_error)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk1404 $(call gen-test, diagnostics/std.exceptions/logic.error/logic_error)