Home
last modified time | relevance | path

Searched refs:runtime_error (Results 1 – 25 of 119) sorted by relevance

12345

/external/libcxx/src/
Dstdexcept.cpp61 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()
Dsystem_error.cpp226 : 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/
Dweak-external.cpp45 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/
Dstdexcept25 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/
Druntime_error.pass.cpp20 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/googletest/googletest/test/
Dgtest_catch_exceptions_test_.cc109 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/
Dgtest_catch_exceptions_test_.cc109 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/v8/testing/gtest/test/
Dgtest_catch_exceptions_test_.cc109 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/
Dgtest_catch_exceptions_test_.cc109 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/
DdeSocket.cpp49 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()
DdeFilePath.cpp120 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()
DdeProcess.hpp35 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/
DException.hpp39 struct Exception : std::runtime_error
41 using std::runtime_error::runtime_error;
/external/clang/test/SemaCXX/
DPR9460.cpp11 struct runtime_error{ struct
12 runtime_error(
15 runtime_error(0);
DPR9461.cpp29 struct runtime_error{runtime_error(string);}; struct
31 struct system_error:runtime_error{ // expected-note {{to match}}
/external/vulkan-validation-layers/demos/smoke/
DShellWayland.cpp140 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/
Dstdlib_stdexcept.cpp31 runtime_error::~runtime_error() _NOEXCEPT {} in ~runtime_error()
34 runtime_error::what() const _NOEXCEPT in what()
/external/fmtlib/test/
Dgtest-extra-test.cc77 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/
DrsgDefs.hpp36 class Exception : public std::runtime_error
39 Exception (const std::string& message) : std::runtime_error(message) {} in Exception()
/external/deqp/execserver/
DxsTestProcess.hpp33 class TestProcessException : public std::runtime_error
36 TestProcessException (const std::string& message) : std::runtime_error(message) {} in TestProcessException()
DxsDefs.hpp64 class Error : public std::runtime_error
67 Error (const std::string& message) : std::runtime_error(message) {} in Error()
/external/parameter-framework/upstream/utility/posix/
DDynamicLibrary.cpp47 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/
DDynamicLibrary.cpp50 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/
DxeDefs.hpp34 class Error : public std::runtime_error
37 Error (const std::string& message) : std::runtime_error(message) {} in Error()
/external/vixl/src/
Dglobals-vixl.h90 throw std::runtime_error(oss.str()); \
96 throw std::runtime_error(oss.str()); \
104 throw std::runtime_error(oss.str()); \

12345