Searched defs:runtime_error (Results 1 - 5 of 5) sorted by relevance

/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}}
H A Dwarn-consumed-analysis.cpp675 class runtime_error class in namespace:ContinueICETest
678 virtual ~runtime_error();
683 if(sf) throw runtime_error();
/external/libcxx/src/
H A Dstdexcept.cpp61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) function in class:std::runtime_error
65 runtime_error::runtime_error(const char* msg) : __imp_(msg) function in class:std::runtime_error
69 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
74 runtime_error&
75 runtime_error::operator=(const runtime_error
[all...]
/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"));

Completed in 293 milliseconds