Home
last modified time | relevance | path

Searched refs:range_error (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/std.exceptions/range.error/
Drange_error.pass.cpp20 static_assert((std::is_base_of<std::runtime_error, std::range_error>::value), in main()
22 static_assert(std::is_polymorphic<std::range_error>::value, in main()
26 std::range_error e(msg); in main()
28 std::range_error e2(e); in main()
35 std::range_error e(msg); in main()
37 std::range_error e2(e); in main()
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.convenience/conversions/conversions.string/
Dctor_err_string.pass.cpp32 catch (const std::range_error&) in main()
40 catch (const std::range_error&) in main()
53 catch (const std::range_error&) in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stdexcept.h80 class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
82 range_error(const string& __arg) : runtime_error(__arg) {} in range_error() function
84 ~range_error() _STLP_NOTHROW_INHERENTLY;
D_range_errors.c67 { _STLP_THROW_MSG(range_error, __msg); } in __stl_throw_range_error()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dstdexcept26 class range_error;
130 class _LIBCPP_EXCEPTION_ABI range_error
134 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
135 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
137 virtual ~range_error() _NOEXCEPT;
Dlocale4029 throw range_error("wstring_convert: from_bytes error");
4118 throw range_error("wstring_convert: to_bytes error");
/ndk/sources/cxx-stl/llvm-libc++/src/
Dstdexcept.cpp190 range_error::~range_error() _NOEXCEPT {} in ~range_error()
/ndk/sources/cxx-stl/stlport/src/
Ddll_main.cpp82 range_error::~range_error() _STLP_NOTHROW_INHERENTLY {} in ~range_error()