| /llvm-project-15.0.7/libcxx/src/support/runtime/ |
| H A D | stdexcept_default.ipp | 33 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) {} 35 runtime_error::runtime_error(const char* msg) : __imp_(msg) {} 37 runtime_error::runtime_error(const runtime_error& re) noexcept 40 runtime_error& runtime_error::operator=(const runtime_error& re) noexcept { 49 const char* runtime_error::what() const noexcept { return __imp_.c_str(); } 57 runtime_error::~runtime_error() noexcept {}
|
| H A D | stdexcept_vcruntime.ipp | 15 runtime_error::runtime_error(std::string const& s) : exception(s.c_str()) {}
|
| /llvm-project-15.0.7/openmp/runtime/tools/lib/ |
| H A D | tools.pm | 85 my @warning = ( sub {}, \&warning, \&runtime_error ); 496 sub runtime_error(@) { subroutine 913 runtime_error( "$prefix: $@" ); 916 runtime_error( "$prefix." ); 1053 runtime_error( $prefix, "Cannot stat `$dir': $!" ); 1056 runtime_error( $prefix, "It is not a directory." ); 1151 rmdir( $dir ) or runtime_error( "$prefix." ); 1381 my $error = \&runtime_error; 1898 runtime_error( $@ ); 1904 runtime_error( $@ ); [all …]
|
| H A D | Uname.pm | 242 or runtime_error( "$release: There is no DISTRIB_ID:", $bulk, "(eof)" ); 245 or runtime_error( "$release: There is no DISTRIB_RELEASE:", $bulk, "(eof)" ); 248 or runtime_error( "$release: There is no DISTRIB_CODENAME:", $bulk, "(eof)" ); 251 or runtime_error( "$release: There is no DISTRIB_DESCRIPTION:", $bulk, "(eof)" ); 289 or runtime_error( "$release: Cannot find the first line:", $bulk, "(eof)" ); 293 or runtime_error( "$release:1: Cannot parse line:", $first_line ); 303 or runtime_error( "$release: Cannot find the first line:", $bulk, "(eof)" ); 307 or runtime_error( "$release:1: Cannot parse line:", $first_line ); 310 or runtime_error( "$release: There is no VERSION:", $bulk, "(eof)" ); 320 or runtime_error( "$release: Cannot find the first line:", $bulk, "(eof)" ); [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | weak-external.cpp | 45 class _LIBCPP_EXCEPTION_ABI runtime_error class 51 explicit runtime_error(const string&); 52 explicit runtime_error(const char*); 54 runtime_error(const runtime_error&) _NOEXCEPT; 55 runtime_error& operator=(const runtime_error&) _NOEXCEPT; 57 virtual ~runtime_error() _NOEXCEPT; 65 throw(std::runtime_error("string")); in dummysymbol()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | stdexcept | 24 class runtime_error; 100 class _LIBCPP_EXCEPTION_ABI runtime_error 107 explicit runtime_error(const string&); 108 explicit runtime_error(const char*); 110 runtime_error(const runtime_error&) _NOEXCEPT; 111 runtime_error& operator=(const runtime_error&) _NOEXCEPT; 113 virtual ~runtime_error() _NOEXCEPT; 118 explicit runtime_error(const _VSTD::string&); // Symbol uses versioned std::string 175 : public runtime_error 188 : public runtime_error [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/runtime.error/ |
| H A D | runtime_error.pass.cpp | 21 static_assert((std::is_base_of<std::exception, std::runtime_error>::value), in main() 23 static_assert(std::is_polymorphic<std::runtime_error>::value, in main() 27 std::runtime_error e(msg); in main() 29 std::runtime_error e2(e); in main() 36 std::runtime_error e(msg); in main() 38 std::runtime_error e2(e); in main()
|
| /llvm-project-15.0.7/openmp/runtime/tools/ |
| H A D | check-execstack.pl | 38 runtime_error( "$file: No stack segment found; looks like stack would be executable." ); 41 … runtime_error( "$file: More than one stack segment found.", "readelf output:", @output, "(eof)" ); 49 runtime_error( "$file: Cannot parse stack segment line:", ">>> $stack[ 0 ]" ); 53 runtime_error( "$file: Stack is executable" );
|
| H A D | check-depends.pl | 36 runtime_error( "Fail to parse $tool output:", @bulk, "(eof)" ); 251 … runtime_error( "Incorrect file is specified: `$lib'; only `lib', `dll' or `exe' file expected" ); 358 runtime_error( "Specified file does not exist: \"$lib\"" ); 370 runtime_error( "OS \"$target_os\" not supported" ); 387 runtime_error( "Unexpected dependencies:", map( " $_", @unexpected ) );
|
| H A D | check-instruction-set.pl | 142 runtime_error( "Invalid file format: $fmt." ); 172 runtime_error( "Error parsing objdump output line $n:\n>>>> $line\n" ); 206 runtime_error( "Only works on lin_32 and lin_mic platforms." );
|
| H A D | generate-def.pl | 40 runtime_error( 116 runtime_error(
|
| H A D | message-converter.pl | 142 runtime_error( "Error parsing $name line $n: " . "$msg:\n" . " $line" ); 233 runtime_error( 492 runtime_error( "OS \"$target_os\" is not supported" );
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | PR9460.cpp | 11 struct runtime_error{ struct 12 runtime_error( 15 runtime_error(0);
|
| H A D | PR9461.cpp | 29 struct runtime_error{runtime_error(string);}; struct 31 struct system_error:runtime_error{ // expected-note {{to match}}
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | system_error.cpp | 247 : runtime_error(__init(ec, what_arg)), in system_error() 253 : runtime_error(__init(ec, what_arg)), in system_error() 259 : runtime_error(__init(ec, "")), in system_error() 265 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 271 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 277 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
|
| /llvm-project-15.0.7/libcxxabi/src/ |
| H A D | stdlib_stdexcept.cpp | 30 runtime_error::~runtime_error() noexcept {} in ~runtime_error() 33 runtime_error::what() const noexcept in what()
|
| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | format_error.h | 28 class _LIBCPP_EXCEPTION_ABI format_error : public runtime_error { 31 : runtime_error(__s) {} in format_error() 33 : runtime_error(__s) {} in format_error()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | throw-keyword-missing.cpp | 29 struct runtime_error : public exception { struct 30 explicit runtime_error(const std::string &what_arg); 55 std::runtime_error("Unexpected argument"); in stdExceptionNotTrownTest() 63 throw std::runtime_error("Unexpected argument"); in stdExceptionThrownTest()
|
| /llvm-project-15.0.7/openmp/libomptarget/test/offloading/ |
| H A D | bug50022.cpp | 22 throw std::runtime_error("wrong result!"); in main() 30 throw std::runtime_error("wrong result!"); in main()
|
| /llvm-project-15.0.7/compiler-rt/test/hwasan/TestCases/ |
| H A D | try-catch.cpp | 21 throw std::runtime_error("hello"); in h() 54 } catch (const std::runtime_error &e) { in f()
|
| /llvm-project-15.0.7/libcxx/test/std/localization/locales/locale/locale.cons/ |
| H A D | char_pointer.pass.cpp | 91 catch (std::runtime_error&) in main() 99 catch (std::runtime_error&) in main()
|
| /llvm-project-15.0.7/libcxx/test/std/concepts/concepts.object/ |
| H A D | semiregular.compile.pass.cpp | 111 static_assert(!std::semiregular<std::runtime_error>); 113 !std::semiregular<std::tuple<std::runtime_error, std::overflow_error> >);
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/format/format.error/ |
| H A D | format.error.pass.cpp | 28 static_assert(std::is_base_of_v<std::runtime_error, std::format_error>); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/overflow.error/ |
| H A D | overflow_error.pass.cpp | 21 static_assert((std::is_base_of<std::runtime_error, std::overflow_error>::value), in main()
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/range.error/ |
| H A D | range_error.pass.cpp | 21 static_assert((std::is_base_of<std::runtime_error, std::range_error>::value), in main()
|