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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dstdexcept.cpp63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) function in class:std::runtime_error
67 runtime_error::runtime_error(const char* msg) : __imp_(msg) function in class:std::runtime_error
71 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
76 runtime_error&
77 runtime_error::operator=(const runtime_error
[all...]
/ndk/sources/cxx-stl/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) {}

Completed in 167 milliseconds