Home
last modified time | relevance | path

Searched refs:runtime_error (Results 1 – 25 of 974) sorted by relevance

12345678910>>...39

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcow-stdexcept.cc83 runtime_error::runtime_error(const runtime_error& e) noexcept in runtime_error() function in std::runtime_error
86 runtime_error&
87 runtime_error::operator=(const runtime_error& e) noexcept in operator =()
91 runtime_error::runtime_error(runtime_error&& e) noexcept = default;
93 runtime_error&
94 runtime_error::operator=(runtime_error&& e) noexcept = default;
96 runtime_error::runtime_error(runtime_error&& e) noexcept in runtime_error() function in std::runtime_error
99 runtime_error&
100 runtime_error::operator=(runtime_error&& e) noexcept in operator =()
121 runtime_error::runtime_error(const char* __arg) in runtime_error() function in std::runtime_error
[all …]
H A Dcxx11-stdexcept.cc46 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error
65 : runtime_error(__arg) { } in range_error()
68 : runtime_error(__arg) { } in overflow_error()
71 : runtime_error(__arg) { } in underflow_error()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcow-stdexcept.cc72 runtime_error::runtime_error(const runtime_error& e) noexcept in runtime_error() function in std::runtime_error
75 runtime_error&
76 runtime_error::operator=(const runtime_error& e) noexcept in operator =()
79 runtime_error::runtime_error(runtime_error&& e) noexcept = default;
81 runtime_error&
82 runtime_error::operator=(runtime_error&& e) noexcept = default;
101 runtime_error::runtime_error(const char* __arg) in runtime_error() function in std::runtime_error
105 : runtime_error(__arg) { } in range_error()
108 : runtime_error(__arg) { } in overflow_error()
111 : runtime_error(__arg) { } in underflow_error()
[all …]
H A Dcxx11-stdexcept.cc46 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error
65 : runtime_error(__arg) { } in range_error()
68 : runtime_error(__arg) { } in overflow_error()
71 : runtime_error(__arg) { } in underflow_error()
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/runtime/
H A Dstdexcept_default.ipp33 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) {}
35 runtime_error::runtime_error(const char* msg) : __imp_(msg) {}
37 runtime_error::runtime_error(const runtime_error& re) noexcept
40 runtime_error& runtime_error::operator=(const runtime_error& re) noexcept {
49 const char* runtime_error::what() const noexcept { return __imp_.c_str(); }
57 runtime_error::~runtime_error() noexcept {}
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dstdexcept24 class runtime_error;
99 class _LIBCPP_EXCEPTION_ABI runtime_error
106 explicit runtime_error(const string&);
107 explicit runtime_error(const char*);
109 runtime_error(const runtime_error&) _NOEXCEPT;
110 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
112 virtual ~runtime_error() _NOEXCEPT;
117 explicit runtime_error(const _VSTD::string&); // Symbol uses versioned std::string
118 _LIBCPP_INLINE_VISIBILITY explicit runtime_error(const char* __s) : exception(__s) {}
174 : public runtime_error
[all …]
/netbsd-src/external/bsd/kyua-cli/dist/engine/
H A Dkyuafile.cpp229 throw std::runtime_error("Can only call syntax() once"); in callback_syntax()
232 throw std::runtime_error(F("Unsupported file version %s") % in callback_syntax()
260 throw std::runtime_error(F("Got unexpected absolute path for test " in callback_test_program()
263 throw std::runtime_error(F("Test program '%s' cannot contain path " in callback_test_program()
270 throw std::runtime_error(F("Non-existent test program '%s'") % in callback_test_program()
291 throw std::runtime_error("Can only call test_suite() once"); in callback_test_suite()
310 } catch (const std::runtime_error& e) { in parse()
351 throw std::runtime_error(error); in get_table_string()
367 throw std::runtime_error(F("Unsupported test interface '%s'") % in ensure_valid_interface()
392 throw std::runtime_error( in lua_generic_test_program()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dstdexcept.cc67 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error
70 runtime_error::~runtime_error() _GLIBCXX_USE_NOEXCEPT { } in ~runtime_error()
73 runtime_error::what() const _GLIBCXX_USE_NOEXCEPT in what()
77 : runtime_error(__arg) { } in range_error()
82 : runtime_error(__arg) { } in overflow_error()
87 : runtime_error(__arg) { } in underflow_error()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dstdexcept.cc67 runtime_error::runtime_error(const string& __arg) in runtime_error() function in std::runtime_error
70 runtime_error::~runtime_error() _GLIBCXX_USE_NOEXCEPT { } in ~runtime_error()
73 runtime_error::what() const _GLIBCXX_USE_NOEXCEPT in what()
77 : runtime_error(__arg) { } in range_error()
82 : runtime_error(__arg) { } in overflow_error()
87 : runtime_error(__arg) { } in underflow_error()
/netbsd-src/external/bsd/atf/dist/atf-c++/detail/
H A Dtext_test.cpp145 ATF_REQUIRE_THROW(std::runtime_error, match("", "[")); in ATF_TEST_CASE_BODY()
306 ATF_REQUIRE_THROW(std::runtime_error, to_bool("")); in ATF_TEST_CASE_BODY()
307 ATF_REQUIRE_THROW(std::runtime_error, to_bool("tru")); in ATF_TEST_CASE_BODY()
308 ATF_REQUIRE_THROW(std::runtime_error, to_bool("true2")); in ATF_TEST_CASE_BODY()
309 ATF_REQUIRE_THROW(std::runtime_error, to_bool("fals")); in ATF_TEST_CASE_BODY()
310 ATF_REQUIRE_THROW(std::runtime_error, to_bool("false2")); in ATF_TEST_CASE_BODY()
329 ATF_REQUIRE_THROW_RE(std::runtime_error, "Empty", to_bytes("")); in ATF_TEST_CASE_BODY()
330 ATF_REQUIRE_THROW_RE(std::runtime_error, "Unknown size unit 'd'", in ATF_TEST_CASE_BODY()
332 ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" ")); in ATF_TEST_CASE_BODY()
333 ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" k")); in ATF_TEST_CASE_BODY()
[all …]
/netbsd-src/external/bsd/atf/dist/tools/
H A Dtext_test.cpp145 ATF_REQUIRE_THROW(std::runtime_error, match("", "[")); in ATF_TEST_CASE_BODY()
306 ATF_REQUIRE_THROW(std::runtime_error, to_bool("")); in ATF_TEST_CASE_BODY()
307 ATF_REQUIRE_THROW(std::runtime_error, to_bool("tru")); in ATF_TEST_CASE_BODY()
308 ATF_REQUIRE_THROW(std::runtime_error, to_bool("true2")); in ATF_TEST_CASE_BODY()
309 ATF_REQUIRE_THROW(std::runtime_error, to_bool("fals")); in ATF_TEST_CASE_BODY()
310 ATF_REQUIRE_THROW(std::runtime_error, to_bool("false2")); in ATF_TEST_CASE_BODY()
329 ATF_REQUIRE_THROW_RE(std::runtime_error, "Empty", to_bytes("")); in ATF_TEST_CASE_BODY()
330 ATF_REQUIRE_THROW_RE(std::runtime_error, "Unknown size unit 'd'", in ATF_TEST_CASE_BODY()
332 ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" ")); in ATF_TEST_CASE_BODY()
333 ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" k")); in ATF_TEST_CASE_BODY()
[all …]
H A Dtest_program_test.cpp826 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
828 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
841 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
843 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
852 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
854 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
867 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
869 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
878 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
880 ATF_REQUIRE_THROW(std::runtime_error, in ATF_TEST_CASE_BODY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/runtime/
H A Dbounds.c49 runtime_error ("Incorrect extent in return value of" in bounds_iforeach_return()
80 runtime_error ("Incorrect size in %s of %s" in bounds_ifunction_return()
87 runtime_error ("Incorrect size of %s in %s" in bounds_ifunction_return()
96 runtime_error("Incorrect extent in %s of %s" in bounds_ifunction_return()
123 runtime_error ("Incorrect size of %s in %s" in bounds_equal_extents()
130 runtime_error ("Incorrect size of %s of %s" in bounds_equal_extents()
141 runtime_error("Incorrect extent in %s of %s" in bounds_equal_extents()
167 runtime_error ("Incorrect size in %s of %s" in bounds_reduced_extents()
174 runtime_error ("Incorrect size of %s of %s" in bounds_reduced_extents()
188 runtime_error("Incorrect extent in %s of %s" in bounds_reduced_extents()
/netbsd-src/external/gpl3/gcc/dist/libgfortran/runtime/
H A Dbounds.c49 runtime_error ("Incorrect extent in return value of" in bounds_iforeach_return()
80 runtime_error ("Incorrect size in %s of %s" in bounds_ifunction_return()
87 runtime_error ("Incorrect size of %s in %s" in bounds_ifunction_return()
96 runtime_error("Incorrect extent in %s of %s" in bounds_ifunction_return()
123 runtime_error ("Incorrect size of %s in %s" in bounds_equal_extents()
130 runtime_error ("Incorrect size of %s of %s" in bounds_equal_extents()
141 runtime_error("Incorrect extent in %s of %s" in bounds_equal_extents()
167 runtime_error ("Incorrect size in %s of %s" in bounds_reduced_extents()
174 runtime_error ("Incorrect size of %s of %s" in bounds_reduced_extents()
188 runtime_error("Incorrect extent in %s of %s" in bounds_reduced_extents()
/netbsd-src/external/bsd/kyua-cli/dist/utils/fs/
H A Dlua_module.cpp66 throw std::runtime_error("Need a string parameter"); in lua_fs_basename()
86 throw std::runtime_error("Need a string parameter"); in lua_fs_dirname()
106 throw std::runtime_error("Need a string parameter"); in lua_fs_exists()
180 throw std::runtime_error("Need a string parameter"); in lua_fs_files()
195 throw std::runtime_error(F("Failed to open directory: %s") % in lua_fs_files()
217 throw std::runtime_error("Need a string parameter"); in lua_fs_is_absolute()
238 throw std::runtime_error("Need a string parameter"); in lua_fs_join()
242 throw std::runtime_error("Need a string parameter"); in lua_fs_join()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dstdexcept219 class runtime_error : public exception
226 runtime_error(const string& __arg) _GLIBCXX_TXN_SAFE;
230 runtime_error(const char*) _GLIBCXX_TXN_SAFE;
232 runtime_error(runtime_error&&) noexcept;
233 runtime_error& operator=(runtime_error&&) noexcept;
237 runtime_error(const runtime_error&) _GLIBCXX_NOTHROW;
238 runtime_error& operator=(const runtime_error&) _GLIBCXX_NOTHROW;
240 runtime_error(const runtime_error&) = default;
241 runtime_error& operator=(const runtime_error&) = default;
244 virtual ~runtime_error() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dstdexcept219 class runtime_error : public exception
226 runtime_error(const string& __arg) _GLIBCXX_TXN_SAFE;
230 runtime_error(const char*) _GLIBCXX_TXN_SAFE;
232 runtime_error(runtime_error&&) noexcept;
233 runtime_error& operator=(runtime_error&&) noexcept;
237 runtime_error(const runtime_error&) _GLIBCXX_NOTHROW;
238 runtime_error& operator=(const runtime_error&) _GLIBCXX_NOTHROW;
240 runtime_error(const runtime_error&) = default;
241 runtime_error& operator=(const runtime_error&) = default;
244 virtual ~runtime_error() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
[all …]
/netbsd-src/external/bsd/kyua-cli/dist/utils/
H A Dunits_test.cpp155 ATF_REQUIRE_THROW_RE(std::runtime_error, "empty", units::bytes::parse("")); in ATF_TEST_CASE_BODY()
156 ATF_REQUIRE_THROW_RE(std::runtime_error, "empty", units::bytes::parse("k")); in ATF_TEST_CASE_BODY()
158 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'.'", in ATF_TEST_CASE_BODY()
160 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'3.'", in ATF_TEST_CASE_BODY()
162 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'.3'", in ATF_TEST_CASE_BODY()
165 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*' t'", in ATF_TEST_CASE_BODY()
167 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'.t'", in ATF_TEST_CASE_BODY()
169 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'12 t'", in ATF_TEST_CASE_BODY()
171 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'12.t'", in ATF_TEST_CASE_BODY()
173 ATF_REQUIRE_THROW_RE(std::runtime_error, "Invalid.*'.12t'", in ATF_TEST_CASE_BODY()
[all …]
/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLdifReader.cpp79 throw( std::runtime_error(err.str()) ); in readNextRecord()
95 throw( std::runtime_error(err.str()) ); in readNextRecord()
102 throw( std::runtime_error(err.str()) ); in readNextRecord()
112 throw( std::runtime_error(err.str()) ); in readNextRecord()
129 throw( std::runtime_error(err.str()) ); in readNextRecord()
154 throw( std::runtime_error(err.str()) ); in readNextRecord()
185 throw( std::runtime_error( "The LDIF record: '" + i->second + in getEntryRecord()
256 throw( std::runtime_error( err.str() )); in splitLine()
296 throw( std::runtime_error( err.str() )); in splitLine()
306 throw( std::runtime_error( err.str() )); in splitLine()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgfortran/generated/
H A Dspread_r4.c61 runtime_error ("return rank too large in spread()"); in spread_r4()
64 runtime_error ("dim outside of rank in spread()"); in spread_r4()
116 runtime_error ("rank mismatch in spread()"); in spread_r4()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_r4()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_r4()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_r4()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_r4()
252 runtime_error ("dim too large in spread()"); in spread_scalar_r4()
H A Dspread_i2.c61 runtime_error ("return rank too large in spread()"); in spread_i2()
64 runtime_error ("dim outside of rank in spread()"); in spread_i2()
116 runtime_error ("rank mismatch in spread()"); in spread_i2()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_i2()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_i2()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_i2()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_i2()
252 runtime_error ("dim too large in spread()"); in spread_scalar_i2()
H A Dspread_c4.c61 runtime_error ("return rank too large in spread()"); in spread_c4()
64 runtime_error ("dim outside of rank in spread()"); in spread_c4()
116 runtime_error ("rank mismatch in spread()"); in spread_c4()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_c4()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_c4()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_c4()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_c4()
252 runtime_error ("dim too large in spread()"); in spread_scalar_c4()
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/generated/
H A Dspread_c4.c61 runtime_error ("return rank too large in spread()"); in spread_c4()
64 runtime_error ("dim outside of rank in spread()"); in spread_c4()
116 runtime_error ("rank mismatch in spread()"); in spread_c4()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_c4()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_c4()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_c4()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_c4()
252 runtime_error ("dim too large in spread()"); in spread_scalar_c4()
H A Dspread_r8.c61 runtime_error ("return rank too large in spread()"); in spread_r8()
64 runtime_error ("dim outside of rank in spread()"); in spread_r8()
116 runtime_error ("rank mismatch in spread()"); in spread_r8()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_r8()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_r8()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_r8()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_r8()
252 runtime_error ("dim too large in spread()"); in spread_scalar_r8()
H A Dspread_i16.c61 runtime_error ("return rank too large in spread()"); in spread_i16()
64 runtime_error ("dim outside of rank in spread()"); in spread_i16()
116 runtime_error ("rank mismatch in spread()"); in spread_i16()
130 runtime_error("Incorrect extent in return value of SPREAD" in spread_i16()
140 runtime_error("Incorrect extent in return value of SPREAD" in spread_i16()
237 runtime_error ("incorrect destination rank in spread()"); in spread_scalar_i16()
240 runtime_error ("dim outside of rank in spread()"); in spread_scalar_i16()
252 runtime_error ("dim too large in spread()"); in spread_scalar_i16()

12345678910>>...39