HomeSort by relevance Sort by last modified time
    Searched defs:runtime_error (Results 1 - 7 of 7) sorted by null

  /external/clang/test/SemaCXX/
PR9460.cpp 11 struct runtime_error{ struct
12 runtime_error(
15 runtime_error(0);
PR9461.cpp 29 struct runtime_error{runtime_error(string);}; struct
31 struct system_error:runtime_error{ // expected-note {{to match}}
warn-consumed-analysis.cpp 675 class runtime_error class in namespace:ContinueICETest
678 virtual ~runtime_error();
683 if(sf) throw runtime_error();
  /external/epid-sdk/epid/member/tiny/math/unittests/internal/
onetimepad-test.cc 127 EXPECT_THROW(OneTimePad::Generate(&word, 32, &otp), std::runtime_error); member in class:__anon22122::std
  /external/libcxx/src/
stdexcept.cpp 61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) function in class:std::runtime_error
65 runtime_error::runtime_error(const char* msg) : __imp_(msg) function in class:std::runtime_error
69 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
74 runtime_error&
75 runtime_error::operator=(const runtime_error& le) _NOEXCEP
    [all...]
  /external/catch2/projects/ExtraTests/
X01-PrefixedMacros.cpp 15 throw std::runtime_error("Some msg");
26 CATCH_REQUIRE_THROWS_AS(this_throws(), std::runtime_error); member in class:std
28 CATCH_REQUIRE_THROWS_MATCHES(this_throws(), std::runtime_error, Predicate<std::runtime_error>([](std::runtime_error const&) { return true; })); member in class:std
42 CATCH_CHECK_THROWS_AS(this_throws(), std::runtime_error); member in class:std
44 CATCH_CHECK_THROWS_MATCHES(this_throws(), std::runtime_error, Predicate<std::runtime_error>([](std::runtime_error const&) { return true; })); member in class:std
  /external/clang/test/CodeGenCXX/
weak-external.cpp 45 class _LIBCPP_EXCEPTION_ABI runtime_error class in namespace:std
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"));

Completed in 576 milliseconds