/external/clang/test/SemaCXX/ |
PR9460.cpp | 11 struct runtime_error{ struct 12 runtime_error( 15 runtime_error(0);
|
PR9461.cpp | 29 struct runtime_error{runtime_error(string);}; struct 31 struct system_error:runtime_error{ // expected-note {{to match}}
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
stdexcept | 25 class runtime_error; 73 class _LIBCPP_EXCEPTION_ABI runtime_error 79 explicit runtime_error(const string&); 80 explicit runtime_error(const char*); 82 runtime_error(const runtime_error&) _NOEXCEPT; 83 runtime_error& operator=(const runtime_error&) _NOEXCEPT; 85 virtual ~runtime_error() _NOEXCEPT; 131 : public runtime_error [all...] |
/external/clang/test/CodeGenCXX/ |
weak-external.cpp | 45 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/stlport/stl/ |
_stdexcept.h | 40 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) {}
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_stdexcept.h | 40 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) {}
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_stdexcept.h | 41 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception { class in inherits:__Named_exception 43 runtime_error(const string& __s) : __Named_exception(__s) {} function in class:runtime_error 45 ~runtime_error() _STLP_NOTHROW_INHERENTLY; 81 class _STLP_CLASS_DECLSPEC range_error : public runtime_error { 83 range_error(const string& __arg) : runtime_error(__arg) {} 89 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error { 91 overflow_error(const string& __arg) : runtime_error(__arg) {} 97 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error { 99 underflow_error(const string& __arg) : runtime_error(__arg) {}
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_stdexcept.h | 41 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception { class in inherits:__Named_exception 43 runtime_error(const string& __s) : __Named_exception(__s) {} function in class:runtime_error 45 ~runtime_error() _STLP_NOTHROW_INHERENTLY; 81 class _STLP_CLASS_DECLSPEC range_error : public runtime_error { 83 range_error(const string& __arg) : runtime_error(__arg) {} 89 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error { 91 overflow_error(const string& __arg) : runtime_error(__arg) {} 97 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error { 99 underflow_error(const string& __arg) : runtime_error(__arg) {}
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_stdexcept.h | 41 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception { class in inherits:__Named_exception 43 runtime_error(const string& __s) : __Named_exception(__s) {} function in class:runtime_error 45 ~runtime_error() _STLP_NOTHROW_INHERENTLY; 81 class _STLP_CLASS_DECLSPEC range_error : public runtime_error { 83 range_error(const string& __arg) : runtime_error(__arg) {} 89 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error { 91 overflow_error(const string& __arg) : runtime_error(__arg) {} 97 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error { 99 underflow_error(const string& __arg) : runtime_error(__arg) {}
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_stdexcept.h | 40 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) {}
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/runtime.error/ |
runtime_error.pass.cpp | 10 // test runtime_error 20 static_assert((std::is_base_of<std::exception, std::runtime_error>::value), 21 "std::is_base_of<std::exception, std::runtime_error>::value"); 22 static_assert(std::is_polymorphic<std::runtime_error>::value, 23 "std::is_polymorphic<std::runtime_error>::value"); 25 const char* msg = "runtime_error message"; 26 std::runtime_error e(msg); 28 std::runtime_error e2(e); 34 std::string msg("another runtime_error message"); 35 std::runtime_error e(msg) [all...] |
/ndk/tests/device/issue22165-typeinfo/jni/ |
myexception.h | 8 class my_exception : public std::runtime_error 12 : std::runtime_error(w)
|
/external/stlport/test/unit/ |
messages_facets_test.cpp | 19 * 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&) {
|
exception_test.cpp | 72 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 const& e) [all...] |
locale_test.cpp | 41 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...] |
/ndk/tests/device/test-gnustl-full/unit/ |
messages_facets_test.cpp | 19 * 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&) {
|
exception_test.cpp | 72 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 const& e) [all...] |
locale_test.cpp | 41 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...] |
/ndk/tests/device/test-stlport/unit/ |
messages_facets_test.cpp | 19 * 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&) {
|
exception_test.cpp | 72 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 const& e) [all...] |
locale_test.cpp | 41 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...] |
/external/oprofile/libutil++/ |
op_exception.cpp | 43 runtime_error(msg) 49 runtime_error(msg + "\ncause: " + strerror(cerrno))
|
/ndk/sources/cxx-stl/llvm-libc++/src/ |
stdexcept.cpp | 143 runtime_error::runtime_error(const string& msg) function in class:std::runtime_error 149 runtime_error::runtime_error(const char* msg) function in class:std::runtime_error 155 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT 161 runtime_error& 162 runtime_error::operator=(const runtime_error& le) _NOEXCEP [all...] |
system_error.cpp | 154 : runtime_error(__init(ec, what_arg)), 160 : runtime_error(__init(ec, what_arg)), 166 : runtime_error(__init(ec, "")), 172 : runtime_error(__init(error_code(ev, ecat), what_arg)), 178 : runtime_error(__init(error_code(ev, ecat), what_arg)), 184 : runtime_error(__init(error_code(ev, ecat), "")),
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
stdexcept | 107 class runtime_error : public exception 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
|