Searched refs:logic_error (Results 1 - 25 of 36) sorted by relevance

12

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/src/
H A Dstdexcept.cpp28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) function in class:std::logic_error
32 logic_error::logic_error(const char* msg) : __imp_(msg) function in class:std::logic_error
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_)
40 logic_error&
41 logic_error::operator=(const logic_error
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
H A Dstdexcept.cpp28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) function in class:std::logic_error
32 logic_error::logic_error(const char* msg) : __imp_(msg) function in class:std::logic_error
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_)
40 logic_error&
41 logic_error::operator=(const logic_error
[all...]
/prebuilts/misc/common/swig/include/2.0.11/std/
H A Dstd_except.i22 struct logic_error : exception
24 logic_error(const string& msg);
27 struct domain_error : logic_error
32 struct invalid_argument : logic_error
37 struct length_error : logic_error
42 struct out_of_range : logic_error
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/diagnostics/std.exceptions/logic.error/
H A Dlogic_error.pass.cpp10 // test logic_error
20 static_assert((std::is_base_of<std::exception, std::logic_error>::value),
21 "std::is_base_of<std::exception, std::logic_error>::value");
22 static_assert(std::is_polymorphic<std::logic_error>::value,
23 "std::is_polymorphic<std::logic_error>::value");
25 const char* msg = "logic_error message";
26 std::logic_error e(msg);
28 std::logic_error e2(e);
34 std::string msg("another logic_error message");
35 std::logic_error
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/std.exceptions/logic.error/
H A Dlogic_error.pass.cpp10 // test logic_error
20 static_assert((std::is_base_of<std::exception, std::logic_error>::value),
21 "std::is_base_of<std::exception, std::logic_error>::value");
22 static_assert(std::is_polymorphic<std::logic_error>::value,
23 "std::is_polymorphic<std::logic_error>::value");
25 const char* msg = "logic_error message";
26 std::logic_error e(msg);
28 std::logic_error e2(e);
34 std::string msg("another logic_error message");
35 std::logic_error
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.future_error/
H A Dtypes.pass.cpp14 // class future_error : public logic_error {...};
22 std::logic_error*>::value), "");
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.future_error/
H A Dtypes.pass.cpp14 // class future_error : public logic_error {...};
22 std::logic_error*>::value), "");
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.bad_optional_access/
H A Dderive.pass.cpp20 // class bad_optional_access : public logic_error
29 static_assert(std::is_base_of<std::logic_error, bad_optional_access>::value, "");
30 static_assert(std::is_convertible<bad_optional_access*, std::logic_error*>::value, "");
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.bad_optional_access/
H A Dderive.pass.cpp20 // class bad_optional_access : public logic_error
29 static_assert(std::is_base_of<std::logic_error, bad_optional_access>::value, "");
30 static_assert(std::is_convertible<bad_optional_access*, std::logic_error*>::value, "");
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++abi/src/
H A Dstdlib_stdexcept.cpp23 logic_error::~logic_error() _NOEXCEPT {}
26 logic_error::what() const _NOEXCEPT
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
H A Dstdlib_stdexcept.cpp23 logic_error::~logic_error() _NOEXCEPT {}
26 logic_error::what() const _NOEXCEPT
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
H A Dexception.hpp57 struct container_error : public std::logic_error
60 : std::logic_error(__N("__gnu_pbds::container_error")) { }
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/ext/pb_ds/
H A Dexception.hpp57 struct container_error : public std::logic_error
60 : std::logic_error(__N("__gnu_pbds::container_error")) { }
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
H A Dexception.hpp57 struct container_error : public std::logic_error
60 : std::logic_error(__N("__gnu_pbds::container_error")) { }
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/
H A Ddiagnostics_test.cc22 throw std::logic_error("");
33 } catch (std::logic_error const&) {
38 } catch (std::logic_error const&) {
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/
H A Ddiagnostics_test.cc22 throw std::logic_error("");
33 } catch (std::logic_error const&) {
38 } catch (std::logic_error const&) {
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/
H A Dincludes.pass.cpp27 std::logic_error le("blah"); ((void)le);
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/
H A Dincludes.pass.cpp27 std::logic_error le("blah"); ((void)le);
/prebuilts/misc/common/swig/include/2.0.11/csharp/
H A Dstd_except.i24 %typemap(throws, canthrow=1) std::logic_error "SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, $1.what());\n return $null;"
/prebuilts/misc/common/swig/include/2.0.11/d/
H A Dstd_except.i24 %typemap(throws, canthrow=1) std::logic_error "SWIG_DSetPendingException(SWIG_DException, $1.what());\n return $null;"
/prebuilts/misc/common/swig/include/2.0.11/java/
H A Dstd_except.i24 %typemap(throws) std::logic_error "SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, $1.what());\n return $null;"
/prebuilts/misc/common/swig/include/2.0.11/lua/
H A Dstd_except.i35 %typemap(throws) std::logic_error "SWIG_exception(SWIG_RuntimeError, $1.what());"
/prebuilts/misc/common/swig/include/2.0.11/
H A Dstd_except.i48 %std_exception_map(logic_error, SWIG_RuntimeError);
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/diagnostics/std.exceptions/domain.error/
H A Ddomain_error.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::domain_error>::value),
21 "std::is_base_of<std::logic_error, std::domain_error>::value");
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/diagnostics/std.exceptions/invalid.argument/
H A Dinvalid_argument.pass.cpp20 static_assert((std::is_base_of<std::logic_error, std::invalid_argument>::value),
21 "std::is_base_of<std::logic_error, std::invalid_argument>::value");

Completed in 561 milliseconds

12