Searched refs:length_error (Results 1 – 11 of 11) sorted by relevance
23 class length_error;131 class _LIBCPP_EXCEPTION_ABI length_error135 _LIBCPP_INLINE_VISIBILITY explicit length_error(const string& __s) : logic_error(__s) {}136 _LIBCPP_INLINE_VISIBILITY explicit length_error(const char* __s) : logic_error(__s) {}138 virtual ~length_error() _NOEXCEPT;225 throw length_error(__msg);
965 // throws length_error if __n > max_size()2546 // throws length_error if __n > max_size()
54 length_error::length_error(const string& __arg) in length_error() function in length_error
76 { throw length_error(_(__s)); } in __throw_length_error()
88 class length_error : public logic_error 91 explicit length_error(const string& __arg);
95 length_error::~length_error() _NOEXCEPT {} in ~length_error()
1117 catch (const std::length_error& e) { in event_loop()
75 std::length_error*;
6044 instead, thus avoiding redundant check for length_error.6116 const _CharT*, size_type __n)): Fix length_error check.6120 Fix length_error check.6124 size_type)): Remove length_error check.
2677 (__length_error): Likewise, for length_error.
596 * include/bits/vector.tcc (vector::reserve): Throw length_error if