/external/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 | 72 : logic_error(__ec.message()), in future_error()
|
/external/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 499 : public logic_error
|
/external/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 …]
|
/external/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()
|
D | Android.mk | 19 test_name := diagnostics/std.exceptions/logic.error/logic_error 20 test_src := logic_error.pass.cpp
|
/external/libcxxabi/src/ |
D | stdexcept.cpp | 23 logic_error::~logic_error() _NOEXCEPT {} in ~logic_error() 26 logic_error::what() const _NOEXCEPT in what()
|
/external/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()
|
/external/libcxx/test/thread/futures/futures.future_error/ |
D | types.pass.cpp | 20 std::logic_error*>::value), ""); in main()
|
/external/llvm/test/Object/ |
D | coff-archive.test | 8 CHECKIDX: ??0logic_error@std@@QAE@PBD@Z in Debug\mymath.obj 10 CHECKIDX: ??1logic_error@std@@UAE@XZ in Debug\mymath.obj 25 CHECKIDX: ??_R1A@?0A@EA@logic_error@std@@8 in Debug\mymath.obj 145 CHECKIDX: 00000000 T ??0logic_error@std@@QAE@PBD@Z 147 CHECKIDX: 00000000 T ??1logic_error@std@@UAE@XZ 160 CHECKIDX: 00000000 R ??_R1A@?0A@EA@logic_error@std@@8
|
/external/stlport/src/ |
D | dll_main.cpp | 76 logic_error::~logic_error() _STLP_NOTHROW_INHERENTLY {} in ~logic_error()
|
/external/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()
|
/external/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()
|
/external/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()
|
/external/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()
|
/external/libcxx/include/experimental/ |
D | optional | 81 : public logic_error 123 : public logic_error 128 : logic_error(__arg) {} 130 : logic_error(__arg) {}
|
/external/llvm/test/Transforms/Inline/ |
D | 2006-11-09-InlineCGUpdate-2.ll | 23 %"struct.std::domain_error" = type { %"struct.std::logic_error" } 30 …%"struct.std::logic_error" = type { %"struct.__gnu_cxx::char_producer<char>", %"struct.std::basic_…
|
D | 2006-11-09-InlineCGUpdate.ll | 40 %"struct.std::domain_error" = type { %"struct.std::logic_error" } 49 …%"struct.std::logic_error" = type { %"struct.__gnu_cxx::char_producer<char>", %"struct.std::basic_…
|