Home
last modified time | relevance | path

Searched refs:out_of_range (Results 1 – 20 of 20) sorted by relevance

/NextBSD/contrib/libc++/include/
Dstdexcept24 class out_of_range;
128 class _LIBCPP_EXCEPTION_ABI out_of_range
132 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
133 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
135 virtual ~out_of_range() _NOEXCEPT;
Darray205 throw out_of_range("array::at");
207 assert(!"array::at out_of_range");
219 throw out_of_range("array::at");
221 assert(!"array::at out_of_range");
Dbitset751 throw out_of_range("bitset string pos out of range");
838 throw out_of_range("bitset set argument out of range");
861 throw out_of_range("bitset reset argument out of range");
894 throw out_of_range("bitset flip argument out of range");
989 throw out_of_range("bitset test argument out of range");
Dmap1573 throw out_of_range("map::at: key not found");
1586 throw out_of_range("map::at: key not found");
Dunordered_map1565 throw out_of_range("unordered_map::at: key not found");
1577 throw out_of_range("unordered_map::at: key not found");
Dvector312 throw out_of_range("vector");
314 assert(!"vector out_of_range");
Dstring1173 throw out_of_range("basic_string");
1175 assert(!"basic_string out_of_range");
Ddeque891 throw out_of_range("deque");
/NextBSD/contrib/libstdc++/src/
Dstdexcept.cc57 out_of_range::out_of_range(const string& __arg) in out_of_range() function in out_of_range
Dfunctexcept.cc80 { throw out_of_range(_(__s)); } in __throw_out_of_range()
/NextBSD/contrib/libc++/src/
Dstdexcept.cpp98 out_of_range::~out_of_range() _NOEXCEPT {} in ~out_of_range()
Dstring.cpp50 throw_helper<out_of_range>(func + ": out of range"); in throw_from_string_out_of_range()
/NextBSD/contrib/libstdc++/include/std/
Dstd_stdexcept.h96 class out_of_range : public logic_error
99 explicit out_of_range(const string& __arg);
/NextBSD/contrib/libc++/include/experimental/
Ddynarray283 throw out_of_range("dynarray::at");
285 assert(!"dynarray::at out_of_range");
299 throw out_of_range("dynarray::at");
301 assert(!"dynarray::at out_of_range");
Dstring_view283 ? (throw out_of_range("string_view::at"), __data[0])
354 throw out_of_range("string_view::copy");
364 // throw out_of_range("string_view::substr");
368 ? throw out_of_range("string_view::substr")
/NextBSD/contrib/libstdc++/config/abi/pre/
Dgnu.ver100 std::out_of_range*;
/NextBSD/contrib/libstdc++/include/ext/
Drope1982 // if (__pos >= size()) throw out_of_range; // XXX
2574 // if (__pos >= size()) throw out_of_range; // XXX
/NextBSD/contrib/libstdc++/
DChangeLog-19991784 Put in check for out_of_range in substr.
2676 * src/stdexcept.cc (__out_of_range): Qualify out_of_range with std::.
DChangeLog-20011292 to throw out_of_range, not range_error, thus sayeth $23.1.1.13.
DChangeLog-20005500 out_of_range instead of range_error.