/external/libcxx/src/ |
D | stdexcept.cpp | 61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) in runtime_error() function in std::runtime_error 65 runtime_error::runtime_error(const char* msg) : __imp_(msg) in runtime_error() function in std::runtime_error 69 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT in runtime_error() function in std::runtime_error 74 runtime_error& 75 runtime_error::operator=(const runtime_error& le) _NOEXCEPT in operator =() 83 runtime_error::~runtime_error() _NOEXCEPT in ~runtime_error() 88 runtime_error::what() const _NOEXCEPT in what()
|
D | system_error.cpp | 245 : runtime_error(__init(ec, what_arg)), in system_error() 251 : runtime_error(__init(ec, what_arg)), in system_error() 257 : runtime_error(__init(ec, "")), in system_error() 263 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 269 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 275 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
|
/external/catch2/examples/ |
D | 207-Rpt-TeamCityReporter.cpp | 51 REQUIRE( (throw std::runtime_error("surprise!"), true) ); 56 REQUIRE_NOTHROW( (throw std::runtime_error("surprise!"), true) ); 66 REQUIRE_THROWS_AS( throw std::bad_alloc(), std::runtime_error ); 73 CHECK_THROWS_WITH( throw std::runtime_error("hello"), "world" ); 74 CHECK_THROWS_WITH( throw std::runtime_error("hello"), Contains("world") ); 77 struct MyException: public std::runtime_error 80 : std::runtime_error( text ) {} in MyException() 88 struct MyExceptionMatcher : Catch::MatcherBase< std::runtime_error > 98 bool match( std::runtime_error const & arg ) const override in match() 124 REQUIRE_THROWS( throw std::runtime_error("unsurprisingly") );
|
/external/clang/test/CodeGenCXX/ |
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()
|
/external/catch2/projects/ExtraTests/ |
D | X01-PrefixedMacros.cpp | 15 throw std::runtime_error("Some msg"); in this_throws() 26 CATCH_REQUIRE_THROWS_AS(this_throws(), std::runtime_error); 28 …REQUIRE_THROWS_MATCHES(this_throws(), std::runtime_error, Predicate<std::runtime_error>([](std::ru… in __anon6ec76d720102() 42 CATCH_CHECK_THROWS_AS(this_throws(), std::runtime_error); 44 …H_CHECK_THROWS_MATCHES(this_throws(), std::runtime_error, Predicate<std::runtime_error>([](std::ru… in __anon6ec76d720202()
|
/external/libcxx/include/ |
D | stdexcept | 25 class runtime_error; 94 class _LIBCPP_EXCEPTION_ABI runtime_error 100 explicit runtime_error(const string&); 101 explicit runtime_error(const char*); 103 runtime_error(const runtime_error&) _NOEXCEPT; 104 runtime_error& operator=(const runtime_error&) _NOEXCEPT; 106 virtual ~runtime_error() _NOEXCEPT; 152 : public runtime_error 155 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {} 156 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {} [all …]
|
/external/libkmsxx/kms++/inc/kms++/ |
D | framebuffer.h | 15 virtual PixelFormat format() const { throw std::runtime_error("not implemented"); } in format() 16 virtual unsigned num_planes() const { throw std::runtime_error("not implemented"); } in num_planes() 18 virtual uint32_t stride(unsigned plane) const { throw std::runtime_error("not implemented"); } in stride() 19 virtual uint32_t size(unsigned plane) const { throw std::runtime_error("not implemented"); } in size() 20 virtual uint32_t offset(unsigned plane) const { throw std::runtime_error("not implemented"); } in offset() 21 virtual uint8_t* map(unsigned plane) { throw std::runtime_error("not implemented"); } in map() 22 virtual int prime_fd(unsigned plane) { throw std::runtime_error("not implemented"); } in prime_fd()
|
/external/OpenCL-CTS/test_conformance/spir/ |
D | exceptions.h | 27 class CmdLineError : public std::runtime_error 30 CmdLineError (const std::string& msg): std::runtime_error(msg){} in CmdLineError() 36 class TestError : public std::runtime_error 39 …TestError (const std::string& msg, int errorCode = 1): std::runtime_error(msg), m_errorCode(errorC… in runtime_error() function 46 class ArchiveError : public std::runtime_error 49 ArchiveError(int errCode): std::runtime_error(mz_error(errCode)){} in ArchiveError()
|
/external/libcxx/test/std/diagnostics/std.exceptions/runtime.error/ |
D | runtime_error.pass.cpp | 20 static_assert((std::is_base_of<std::exception, std::runtime_error>::value), in main() 22 static_assert(std::is_polymorphic<std::runtime_error>::value, in main() 26 std::runtime_error e(msg); in main() 28 std::runtime_error e2(e); in main() 35 std::runtime_error e(msg); in main() 37 std::runtime_error e2(e); in main()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest_catch_exceptions_test_.cc | 109 throw std::runtime_error("Standard C++ exception")); in CxxExceptionInConstructorTest() 153 throw std::runtime_error("Standard C++ exception")); in ~CxxExceptionInDestructorTest() 169 throw std::runtime_error("Standard C++ exception"); in SetUpTestCase() 207 throw std::runtime_error("Standard C++ exception"); in TearDownTestCase() 228 virtual void SetUp() { throw std::runtime_error("Standard C++ exception"); } in SetUp() 258 throw std::runtime_error("Standard C++ exception"); in TearDown() 287 throw std::runtime_error("Standard C++ exception"); in TEST_F()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | math.cpp | 76 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 83 catch (const std::runtime_error& ex) { in __anoncb25dc9d0e02() 123 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 130 catch (const std::runtime_error& ex) { in __anoncb25dc9d1602() 169 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 176 catch (const std::runtime_error& ex) { in __anoncb25dc9d1e02() 215 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 222 catch (const std::runtime_error& ex) { in __anoncb25dc9d2602() 261 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 268 catch (const std::runtime_error& ex) { in __anoncb25dc9d2e02()
|
D | blocking_observable.cpp | 28 auto values = rxcpp::observable<>::error<int>(std::runtime_error("Error from source")). 62 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 84 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 118 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 152 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 186 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))). 220 concat(rxcpp::observable<>::error<int>(std::runtime_error("Error from source"))).
|
D | composite_exception.cpp | 10 auto o1 = rxcpp::observable<>::error<int>(std::runtime_error("Error from source o1\n")); 11 auto o2 = rxcpp::observable<>::error<int>(std::runtime_error("Error from source o2\n")); 24 … catch(std::runtime_error const &error) { printf(" *** %s\n", error.what()); } in __anon17e507740302()
|
/external/python/pybind11/tests/ |
D | test_modules.cpp | 74 } catch (std::runtime_error &) {} in TEST_SUBMODULE() 78 } catch (std::runtime_error &) {} in TEST_SUBMODULE() 82 } catch (std::runtime_error &) {} in TEST_SUBMODULE() 86 } catch (std::runtime_error &) {} in TEST_SUBMODULE() 90 } catch (std::runtime_error &) {} in TEST_SUBMODULE() 94 } catch (std::runtime_error &) {} in TEST_SUBMODULE()
|
D | test_pickling.cpp | 49 throw std::runtime_error("Invalid state!"); in TEST_SUBMODULE() 66 throw std::runtime_error("Invalid state!"); in TEST_SUBMODULE() 100 throw std::runtime_error("Invalid state!"); in TEST_SUBMODULE() 120 throw std::runtime_error("Invalid state!"); in TEST_SUBMODULE()
|
/external/googletest/googletest/test/ |
D | googletest-catch-exceptions-test_.cc | 110 throw std::runtime_error("Standard C++ exception")); in CxxExceptionInConstructorTest() 150 throw std::runtime_error("Standard C++ exception"); in SetUpTestSuite() 188 throw std::runtime_error("Standard C++ exception"); in TearDownTestSuite() 210 void SetUp() override { throw std::runtime_error("Standard C++ exception"); } in SetUp() 240 throw std::runtime_error("Standard C++ exception"); in TearDown() 269 throw std::runtime_error("Standard C++ exception"); in TEST_F()
|
/external/deqp/framework/delibs/decpp/ |
D | deSocket.cpp | 49 throw std::runtime_error("SocketAddress::setHost()"); in setHost() 55 throw std::runtime_error("SocketAddress::setPort()"); in setPort() 61 throw std::runtime_error("SocketAddress::setFamily()"); in setFamily() 67 throw std::runtime_error("SocketAddress::setType()"); in setType() 73 throw std::runtime_error("SocketAddress::setProtocol()"); in setProtocol()
|
D | deFilePath.cpp | 120 throw std::runtime_error("Cannot normalize path: invalid path"); in normalize() 248 throw std::runtime_error("Failed to create directory"); in createDirectoryImpl() 251 throw std::runtime_error("Failed to create directory"); in createDirectoryImpl() 263 throw std::runtime_error("Destination exists already"); in createDirectory() 265 throw std::runtime_error("Parent directory doesn't exist"); in createDirectory() 267 throw std::runtime_error("Parent is not directory"); in createDirectory() 278 throw std::runtime_error("Destination exists already"); in createDirectoryAndParents()
|
/external/parameter-framework/upstream/utility/ |
D | PfError.hpp | 34 struct PfError : public std::runtime_error 36 using std::runtime_error::runtime_error;
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
D | Exception.hpp | 39 struct Exception : std::runtime_error 41 using std::runtime_error::runtime_error;
|
/external/clang/test/SemaCXX/ |
D | PR9460.cpp | 11 struct runtime_error{ struct 12 runtime_error( 15 runtime_error(0);
|
D | PR9461.cpp | 29 struct runtime_error{runtime_error(string);}; struct 31 struct system_error:runtime_error{ // expected-note {{to match}}
|
/external/libcxxabi/src/ |
D | stdlib_stdexcept.cpp | 31 runtime_error::~runtime_error() _NOEXCEPT {} in ~runtime_error() 34 runtime_error::what() const _NOEXCEPT in what()
|
/external/fmtlib/test/ |
D | gtest-extra-test.cc | 55 FMT_NORETURN void throw_exception() { throw std::runtime_error("test"); } in throw_exception() 213 using std::runtime_error; in TEST() 214 EXPECT_THROW_MSG(throw runtime_error(""), runtime_error, ""); in TEST() 215 EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(n++, runtime_error, ""), ""); in TEST() 216 EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(throw 1, runtime_error, ""), ""); in TEST() 218 EXPECT_THROW_MSG(throw runtime_error("a"), runtime_error, "b"), ""); in TEST()
|
/external/deqp/framework/randomshaders/ |
D | rsgDefs.hpp | 36 class Exception : public std::runtime_error 39 Exception (const std::string& message) : std::runtime_error(message) {} in Exception()
|