Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/libcxx/include/
H A Dstdexcept25 class range_error;
174 class _LIBCPP_EXCEPTION_ABI range_error
178 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
179 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
182 range_error(const range_error&) _NOEXCEPT = default;
183 ~range_error() _NOEXCEPT override;
279 throw range_error(__msg);
/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dstdlib_stdexcept.cpp43 range_error::~range_error() noexcept {} in ~range_error()
/openbsd-src/gnu/gcc/libstdc++-v3/src/
H A Dstdexcept.cc69 range_error::range_error(const string& __arg) in range_error() function in range_error
H A Dfunctexcept.cc88 { throw range_error(_(__s)); } in __throw_range_error()
/openbsd-src/gnu/lib/libstdc++/libstdc++/src/
H A Dstdexcept.cc69 range_error::range_error(const string& __arg) in range_error() function in std::range_error
H A Dfunctexcept.cc81 { throw range_error(__s); } in __throw_range_error()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_stdexcept.h127 class range_error : public runtime_error
130 explicit range_error(const string& __arg);
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_stdexcept.h126 class range_error : public runtime_error
129 explicit range_error(const string& __arg);
/openbsd-src/gnu/llvm/libcxx/src/support/runtime/
H A Dstdexcept_default.ipp58 range_error::~range_error() noexcept {}
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dlanguage.h420 extern void range_error (const char *, ...) ATTR_FORMAT (printf, 1, 2);
H A Dm2-exp.y737 range_error("Overflow on numeric constant.");
757 range_error("Overflow on numeric constant -- number too large.");
H A Dm2-exp.c2249 range_error("Overflow on numeric constant.");
2269 range_error("Overflow on numeric constant -- number too large.");
H A Df-exp.y736 range_error("Overflow on numeric constant.");
H A Dlanguage.c901 range_error (const char *string,...) in range_error() function
H A Df-exp.c2131 range_error("Overflow on numeric constant.");
H A DChangeLog-19943253 language.c (type_error, range_error): Use filtered output.
3299 * language.c (type_error, range_error): Call error_begin
H A DChangeLog-19952685 * language.c (type_error, range_error): Likewise.
H A DChangeLog-19912212 langauge.[ch] Added the functions type_error and range_error, which work
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp6509 Status range_error = process_sp->GetMemoryRegionInfo(0, range_info);
6514 if (range_error.Success()) {
6564 range_error = process_sp->GetMemoryRegionInfo(
6566 if (range_error.Fail())
/openbsd-src/gnu/usr.bin/binutils/gdb/doc/
H A Dannotate.texinfo645 @c range_error(), and possibly other places.
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc917 SYMBOL(range_error, std::, <stdexcept>)
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DCHECKLIST367 T class range_error;
414 19.1.7 Class range_error [lib.range.error]
416 T class range_error : public runtime_error {
418 T explicit range_error(const string& what_arg);
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DCHECKLIST367 T class range_error;
414 19.1.7 Class range_error [lib.range.error]
416 T class range_error : public runtime_error {
418 T explicit range_error(const string& what_arg);
/openbsd-src/gnu/lib/libstdc++/libstdc++/
H A DChangeLog-20005500 out_of_range instead of range_error.
9715 Add std_stdexcept.h include so that range_error will be defined.
9716 Add explicit conversion to string for range_error throws. (HACK?)
H A DChangeLog-20011292 to throw out_of_range, not range_error, thus sayeth $23.1.1.13.

12