/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | stdexcept.cpp | 30 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()
|
D | future.cpp | 74 : logic_error(__ec.message()), in future_error()
|
/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++/libcxx/include/ |
D | stdexcept | 20 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 …]
|
D | future | 49 : public logic_error 501 : public logic_error
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/ |
D | validation.hpp | 40 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/ |
D | stdexcept.cpp | 23 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/ |
D | derive.pass.cpp | 22 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/ |
D | stdexcept.cc | 136 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/ |
D | types.pass.cpp | 20 std::logic_error*>::value), ""); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
D | validation.ipp | 23 #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/ |
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/llvm-libc++/libcxx/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++/libcxx/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++/libcxx/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/stlport/src/ |
D | dll_main.cpp | 76 logic_error::~logic_error() _STLP_NOTHROW_INHERENTLY {} in ~logic_error()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | optional | 81 : 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/ |
D | unit_test_parameters.ipp | 331 catch( rt::logic_error const& ex ) {
|
D | execution_monitor.ipp | 1285 catch( std::logic_error const& ex ) 1288 "std::logic_error: %s", ex.what() ); }
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 1395 $(call gen-test, diagnostics/std.exceptions/logic.error/logic_error)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 1404 $(call gen-test, diagnostics/std.exceptions/logic.error/logic_error)
|