Searched refs:runtime_error (Results 1 - 25 of 114) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb124.C3 class X : public std::runtime_error {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb124.C3 class X : public std::runtime_error {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/src/
H A Dstdexcept.cc56 runtime_error::runtime_error(const string& __arg) function in class:runtime_error
59 runtime_error::~runtime_error() throw() { }
62 runtime_error::what() const throw()
66 : runtime_error(__arg) { }
69 : runtime_error(__arg) { }
72 : runtime_error(__arg) { }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/src/
H A Dstdexcept.cc60 runtime_error::runtime_error(const string& __arg) function in class:std::runtime_error
63 runtime_error::~runtime_error() throw() { }
66 runtime_error::what() const throw()
70 : runtime_error(__arg) { }
73 : runtime_error(__arg) { }
76 : runtime_error(__arg) { }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/19_diagnostics/headers/stdexcept/
H A Dsynopsis.cc28 class runtime_error;
H A Dtypes_std.cc29 typedef std::runtime_error t6;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/19_diagnostics/runtime_error/
H A Dcons_virtual_derivation.cc25 typedef std::runtime_error test_type;
H A Dwhat-2.cc29 class fuzzy_logic : public std::runtime_error
32 fuzzy_logic() : std::runtime_error("whoa") { }
H A Dwhat-3.cc45 std::runtime_error obj1(s);
50 std::runtime_error obj2(s2);
59 std::runtime_error obj3 = std::runtime_error(s3);
H A Dwhat-1.cc35 std::runtime_error obj1 = std::runtime_error(s);
38 std::runtime_error obj2(s);
H A Dwhat-big.cc28 typedef std::runtime_error test_type;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/std/
H A Dstd_stdexcept.h107 class runtime_error : public exception class in namespace:std
114 runtime_error(const string& __arg);
117 ~runtime_error() throw();
126 class range_error : public runtime_error
133 class overflow_error : public runtime_error
140 class underflow_error : public runtime_error
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/char/
H A D5.cc32 { throw std::runtime_error(""); }
35 { throw std::runtime_error(""); }
38 { throw std::runtime_error(""); }
61 catch (std::runtime_error&)
78 catch (std::runtime_error&)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/wchar_t/
H A D5.cc30 { throw std::runtime_error(""); }
33 { throw std::runtime_error(""); }
36 { throw std::runtime_error(""); }
59 catch (std::runtime_error&)
76 catch (std::runtime_error&)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/char/
H A D5.cc33 { throw std::runtime_error(""); }
36 { throw std::runtime_error(""); }
39 { throw std::runtime_error(""); }
62 catch (std::runtime_error&)
79 catch (std::runtime_error&)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/wchar_t/
H A D5.cc31 { throw std::runtime_error(""); }
34 { throw std::runtime_error(""); }
37 { throw std::runtime_error(""); }
60 catch (std::runtime_error&)
77 catch (std::runtime_error&)
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c++/detail/
H A Dexceptions.hpp44 public std::runtime_error
61 std::runtime_error(message),
83 class system_error : public std::runtime_error {
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c++/
H A Dmacros_hpp_test.cpp72 // Check that we can pass std::runtime_error to ATF_REQUIRE_THROW.
76 ATF_REQUIRE_THROW(std::runtime_error, (void)0);
86 ATF_REQUIRE_THROW(std::runtime_error, (void)0);
88 ATF_REQUIRE_THROW(std::runtime_error, (void)1);
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-run/
H A Duser.cpp59 throw std::runtime_error("Failed to drop group privileges");
61 throw std::runtime_error("Failed to drop user privileges");
69 throw std::runtime_error("Failed to get information for user " + user);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c++/detail/
H A Dexceptions.hpp43 public std::runtime_error
60 std::runtime_error(message),
82 class system_error : public std::runtime_error {
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c++/
H A Dmacros_hpp_test.cpp72 // Check that we can pass std::runtime_error to ATF_REQUIRE_THROW.
76 ATF_REQUIRE_THROW(std::runtime_error, (void)0);
86 ATF_REQUIRE_THROW(std::runtime_error, (void)0);
88 ATF_REQUIRE_THROW(std::runtime_error, (void)1);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-run/
H A Duser.cpp57 throw std::runtime_error("Failed to drop group privileges");
59 throw std::runtime_error("Failed to drop user privileges");
67 throw std::runtime_error("Failed to get information for user " + user);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/mt_allocator/
H A D22309_thread.cc37 throw std::runtime_error(error);
57 throw std::runtime_error(error);
74 throw std::runtime_error(error);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/ext/mt_allocator/
H A D22309_thread.cc38 throw std::runtime_error(error);
58 throw std::runtime_error(error);
75 throw std::runtime_error(error);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/facet/
H A D25421.cc50 catch(const std::runtime_error&)

Completed in 164 milliseconds

12345