Home
last modified time | relevance | path

Searched refs:__Named_exception (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stdexcept_base.c19 __Named_exception::__Named_exception(const string& __str) { in __Named_exception() function
42 __Named_exception::__Named_exception(const __Named_exception& __x) { in __Named_exception() function
65 __Named_exception& __Named_exception::operator = (const __Named_exception& __x) {
89 __Named_exception::~__Named_exception() _STLP_NOTHROW_INHERENTLY { in ~__Named_exception()
94 const char* __Named_exception::what() const _STLP_NOTHROW_INHERENTLY in what()
D_stdexcept_base.h67 class _STLP_CLASS_DECLSPEC __Named_exception : public _STLP_EXCEPTION_BASE {
69 __Named_exception(const string& __str);
70 __Named_exception(const __Named_exception&);
71 __Named_exception& operator = (const __Named_exception&);
74 ~__Named_exception() _STLP_NOTHROW_INHERENTLY;
D_stdexcept.h32 class _STLP_CLASS_DECLSPEC logic_error : public __Named_exception {
34 logic_error(const string& __s) : __Named_exception(__s) {} in logic_error()
40 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception {
42 runtime_error(const string& __s) : __Named_exception(__s) {} in runtime_error()
D_exception.h190 class __Named_exception; variable
D_ios_base.h52 class _STLP_CLASS_DECLSPEC failure : public __Named_exception {
/ndk/sources/cxx-stl/stlport/src/
Dios.cpp38 : __Named_exception(s) in failure()