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

12

/external/clang/test/SemaCXX/
H A DPR9460.cpp11 struct runtime_error{ struct
12 runtime_error(
15 runtime_error(0);
H A DPR9461.cpp29 struct runtime_error{runtime_error(string);}; struct
31 struct system_error:runtime_error{ // expected-note {{to match}}
/external/clang/test/CodeGenCXX/
H A Dweak-external.cpp45 class _LIBCPP_EXCEPTION_ABI runtime_error class in namespace:std
51 explicit runtime_error(const string&);
52 explicit runtime_error(const char*);
54 runtime_error(const runtime_error&) _NOEXCEPT;
55 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
57 virtual ~runtime_error() _NOEXCEPT;
65 throw(std::runtime_error("string"));
/external/stlport/test/unit/
H A Dmessages_facets_test.cpp19 * a runtime_error exception.
27 catch (runtime_error const& /* e */) {
39 catch (runtime_error const& /* e */) {
51 catch (runtime_error const& e) {
65 catch (runtime_error const&) {
76 catch (runtime_error const&) {
H A Dexception_test.cpp72 throw std::runtime_error( std::string( "message" ) );
74 catch ( std::runtime_error& err ) {
140 throw std::runtime_error(foo);
142 catch (std::runtime_error const& e) {
144 std::runtime_error clone("");
153 throw std::runtime_error(foo);
155 catch (std::runtime_error e) {
157 std::runtime_error clone("");
167 throw std::runtime_error(msg);
169 catch (std::runtime_error cons
[all...]
H A Dlocale_test.cpp41 catch (runtime_error const&) {
56 * a runtime_error exception.
62 catch (runtime_error const&) {
72 catch (runtime_error const& /* e */) {
84 catch (runtime_error const& /* e */) {
98 catch (runtime_error const& /* e */) {
111 catch (runtime_error const& /* e */) {
122 catch (runtime_error const& /* e */) {
134 catch (runtime_error const& /* e */) {
200 catch ( runtime_error
[all...]
H A Dnum_facets_test.cpp144 catch (runtime_error const&) {
174 * a runtime_error exception.
182 catch (runtime_error const& /* e */) {
194 catch (runtime_error const& /* e */) {
207 catch (runtime_error const& /* e */) {
217 catch (runtime_error const& e) {
229 catch (runtime_error const& e) {
251 catch (runtime_error const& /* e */) {
263 catch (runtime_error const& e) {
277 catch (runtime_error cons
[all...]
H A Dtime_facets_test.cpp207 catch (runtime_error const&) {
241 * a runtime_error exception.
248 catch (runtime_error const&) {
259 catch (runtime_error const&) {
271 catch (runtime_error const& /* e */) {
282 catch (runtime_error const&) {
292 catch (runtime_error const&) {
304 catch (runtime_error const& /* e */) {
314 catch (runtime_error const& /* e */) {
326 catch (runtime_error cons
[all...]
H A Dcollate_facets_test.cpp135 catch (runtime_error const&) {
146 * a runtime_error exception.
154 catch (runtime_error const& /* e */) {
166 catch (runtime_error const& /* e */) {
179 catch (runtime_error const& /* e */) {
189 catch (runtime_error const& e) {
201 catch (runtime_error const& e) {
245 catch (runtime_error const& /* e */) {
259 catch (runtime_error const&) {
270 catch (runtime_error cons
[all...]
H A Dmoney_facets_test.cpp430 catch (runtime_error const&) {
464 * a runtime_error exception.
472 catch (runtime_error const&) {
483 catch (runtime_error const&) {
495 catch (runtime_error const& /* e */) {
507 catch (runtime_error const&) {
518 catch (runtime_error const&) {
530 catch (runtime_error const& /* e */) {
558 catch (runtime_error const& /* e */) {
587 catch (runtime_error cons
[all...]
H A Dctype_facets_test.cpp331 catch (runtime_error const&) {
371 * a runtime_error exception.
380 catch (runtime_error const& /* e */) {
392 catch (runtime_error const& /* e */) {
404 catch (runtime_error const& /* e */) {
419 catch (runtime_error const& /* e */) {
432 catch (runtime_error const& /* e */) {
462 catch (runtime_error const& /* e */) {
476 catch (runtime_error const&) {
487 catch (runtime_error cons
[all...]
/external/stlport/stlport/stl/
H A D_stdexcept.h40 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception { class in inherits:__Named_exception
42 runtime_error(const string& __s) : __Named_exception(__s) {} function in class:runtime_error
44 ~runtime_error() _STLP_NOTHROW_INHERENTLY;
80 class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
82 range_error(const string& __arg) : runtime_error(__arg) {}
88 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error {
90 overflow_error(const string& __arg) : runtime_error(__arg) {}
96 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error {
98 underflow_error(const string& __arg) : runtime_error(__arg) {}
H A D_range_errors.c18 // exception like std::runtime_error for instance will also catch exception
64 { _STLP_THROW_MSG(runtime_error, __msg); }
/external/oprofile/libutil++/
H A Dop_exception.cpp43 runtime_error(msg)
49 runtime_error(msg + "\ncause: " + strerror(cerrno))
H A Dop_exception.h52 struct op_runtime_error : std::runtime_error
/external/chromium/testing/gtest/test/
H A Dgtest_catch_exceptions_test_.cc109 throw std::runtime_error("Standard C++ exception"));
151 throw std::runtime_error("Standard C++ exception"));
166 throw std::runtime_error("Standard C++ exception");
204 throw std::runtime_error("Standard C++ exception");
225 virtual void SetUp() { throw std::runtime_error("Standard C++ exception"); }
255 throw std::runtime_error("Standard C++ exception");
284 throw std::runtime_error("Standard C++ exception");
H A Dgtest_throw_on_failure_ex_test.cc52 // std::runtime_error.
63 // A failed assertion should throw a subclass of std::runtime_error.
66 } catch(const std::runtime_error& e) {
/external/chromium_org/testing/gtest/test/
H A Dgtest_catch_exceptions_test_.cc109 throw std::runtime_error("Standard C++ exception"));
153 throw std::runtime_error("Standard C++ exception"));
169 throw std::runtime_error("Standard C++ exception");
207 throw std::runtime_error("Standard C++ exception");
228 virtual void SetUp() { throw std::runtime_error("Standard C++ exception"); }
258 throw std::runtime_error("Standard C++ exception");
287 throw std::runtime_error("Standard C++ exception");
H A Dgtest_throw_on_failure_ex_test.cc52 // std::runtime_error.
63 // A failed assertion should throw a subclass of std::runtime_error.
66 } catch(const std::runtime_error& e) {
/external/gtest/test/
H A Dgtest_catch_exceptions_test_.cc109 throw std::runtime_error("Standard C++ exception"));
151 throw std::runtime_error("Standard C++ exception"));
166 throw std::runtime_error("Standard C++ exception");
204 throw std::runtime_error("Standard C++ exception");
225 virtual void SetUp() { throw std::runtime_error("Standard C++ exception"); }
255 throw std::runtime_error("Standard C++ exception");
284 throw std::runtime_error("Standard C++ exception");
H A Dgtest_throw_on_failure_ex_test.cc52 // std::runtime_error.
63 // A failed assertion should throw a subclass of std::runtime_error.
66 } catch(const std::runtime_error& e) {
/external/protobuf/gtest/test/
H A Dgtest_throw_on_failure_ex_test.cc52 // std::runtime_error.
63 // A failed assertion should throw a subclass of std::runtime_error.
66 } catch(const std::runtime_error& e) {
/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp98 throw_tests<op_runtime_error, runtime_error>();
102 throw_tests<op_runtime_error, runtime_error>(true);
/external/oprofile/agents/jvmpi/
H A Djvmpi_oprofile.cpp98 throw runtime_error("Error: Cannot find class for compiled"
106 throw runtime_error("Error: Cannot find method name for "
112 throw runtime_error("Error: Cannot find method signature "
196 throw runtime_error("Exiting");
214 throw runtime_error("Exiting");
228 throw runtime_error("Exiting");
/external/stlport/src/
H A Ddll_main.cpp77 runtime_error::~runtime_error() _STLP_NOTHROW_INHERENTLY {}

Completed in 731 milliseconds

12