/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 | 226 : runtime_error(__init(ec, what_arg)), in system_error() 232 : runtime_error(__init(ec, what_arg)), in system_error() 238 : runtime_error(__init(ec, "")), in system_error() 244 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 250 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 256 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
|
/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/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/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/v8/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/googletest/googletest/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/vulkan-validation-layers/tests/gtest-1.7.0/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/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/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()
|
D | deProcess.hpp | 35 class ProcessError : public std::runtime_error 38 ProcessError (const std::string& message) : std::runtime_error(message) {} in ProcessError()
|
/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/vulkan-validation-layers/demos/smoke/ |
D | ShellWayland.cpp | 140 throw std::runtime_error("failed to connect to the display server"); in init_connection() 144 throw std::runtime_error("failed to get registry"); in init_connection() 150 throw std::runtime_error("failed to bind compositor"); in init_connection() 153 throw std::runtime_error("failed to bind shell"); in init_connection() 171 throw std::runtime_error("failed to create surface"); in create_window() 175 throw std::runtime_error("failed to shell_surface"); in create_window() 206 throw std::runtime_error(ss.str()); in load_vk()
|
/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 | 77 throw std::runtime_error("test"); in throw_exception() 198 using std::runtime_error; in TEST() 199 EXPECT_THROW_MSG(throw runtime_error(""), runtime_error, ""); in TEST() 200 EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(n++, runtime_error, ""), ""); in TEST() 201 EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(throw 1, runtime_error, ""), ""); in TEST() 203 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()
|
/external/deqp/execserver/ |
D | xsTestProcess.hpp | 33 class TestProcessException : public std::runtime_error 36 TestProcessException (const std::string& message) : std::runtime_error(message) {} in TestProcessException()
|
D | xsDefs.hpp | 64 class Error : public std::runtime_error 67 Error (const std::string& message) : std::runtime_error(message) {} in Error()
|
/external/parameter-framework/upstream/utility/posix/ |
D | DynamicLibrary.cpp | 47 throw std::runtime_error((dlError != NULL) ? dlError : "unknown dlopen error"); in DynamicLibrary() 63 throw std::runtime_error((dlError != NULL) ? dlError : "unknown dlsym error"); in osGetSymbol()
|
/external/parameter-framework/upstream/utility/windows/ |
D | DynamicLibrary.cpp | 50 throw std::runtime_error(_path + ": cannot open shared object file."); in DynamicLibrary() 69 throw std::runtime_error(_path + ": undefined symbol: " + symbol); in osGetSymbol()
|
/external/deqp/executor/ |
D | xeDefs.hpp | 34 class Error : public std::runtime_error 37 Error (const std::string& message) : std::runtime_error(message) {} in Error()
|
/external/vixl/src/ |
D | globals-vixl.h | 90 throw std::runtime_error(oss.str()); \ 96 throw std::runtime_error(oss.str()); \ 104 throw std::runtime_error(oss.str()); \
|