/external/libcxx/src/ |
D | stdexcept.cpp | 63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) in runtime_error() function in std::runtime_error 67 runtime_error::runtime_error(const char* msg) : __imp_(msg) in runtime_error() function in std::runtime_error 71 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT in runtime_error() function in std::runtime_error 76 runtime_error& 77 runtime_error::operator=(const runtime_error& le) _NOEXCEPT in operator =() 85 runtime_error::~runtime_error() _NOEXCEPT in ~runtime_error() 90 runtime_error::what() const _NOEXCEPT in what()
|
D | system_error.cpp | 159 : runtime_error(__init(ec, what_arg)), in system_error() 165 : runtime_error(__init(ec, what_arg)), in system_error() 171 : runtime_error(__init(ec, "")), in system_error() 177 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 183 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 189 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
|
/external/libcxx/include/ |
D | stdexcept | 25 class runtime_error; 81 class _LIBCPP_EXCEPTION_ABI runtime_error 87 explicit runtime_error(const string&); 88 explicit runtime_error(const char*); 90 runtime_error(const runtime_error&) _NOEXCEPT; 91 runtime_error& operator=(const runtime_error&) _NOEXCEPT; 93 virtual ~runtime_error() _NOEXCEPT; 139 : public runtime_error 142 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {} 143 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {} [all …]
|
/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/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/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/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/libcxxabi/src/ |
D | stdexcept.cpp | 31 runtime_error::~runtime_error() _NOEXCEPT {} in ~runtime_error() 34 runtime_error::what() const _NOEXCEPT in what()
|
/external/opencv3/modules/imgcodecs/src/ |
D | grfmt_gdal.cpp | 234 else{ throw std::runtime_error("Unknown image depth, gdal: 1, img: 1"); } in write_pixel() 245 … else{ throw std::runtime_error("Unknown image depth, gdal:1, img: 3"); } in write_pixel() 251 else{ throw std::runtime_error("Unknown image depth, gdal:3, img: 1"); } in write_pixel() 257 else{ throw std::runtime_error("Unknown image depth, gdal: 4, image: 1"); } in write_pixel() 268 else{ throw std::runtime_error("Unknown image depth, gdal: 3, image: 3"); } in write_pixel() 280 else{ throw std::runtime_error("Unknown image depth, gdal: 4, image: 3"); } in write_pixel() 286 else{ throw std::runtime_error("Unknown image depth, gdal: 4, image: 4"); } in write_pixel() 291 throw std::runtime_error("error: can't convert types."); in write_pixel()
|
/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/opencv3/samples/tapi/ |
D | hog.cpp | 169 throw runtime_error(string("can't open video file: " + vdo_source)); in run() 179 throw runtime_error(msg.str()); in run() 187 throw runtime_error(string("can't open image file: " + img_source)); in run() 250 throw std::runtime_error("can't create video writer"); in run()
|
/external/opencv3/samples/gpu/ |
D | hog.cpp | 198 else throw runtime_error((string("unknown key: ") + argv[i])); in read() 273 throw runtime_error(string("can't open video file: " + args.src)); in run() 283 throw runtime_error(msg.str()); in run() 291 throw runtime_error(string("can't open image file: " + args.src)); in run() 360 throw std::runtime_error("can't create video writer"); in run()
|
/external/opencv3/samples/cpp/ |
D | videostab.cpp | 361 throw runtime_error("specify video file path"); in main() 425 throw runtime_error("OpenCV is built without CUDA support"); in main() 497 throw runtime_error("unknown border extrapolation mode: " in main() 522 throw runtime_error("unknown color inpainting method: " + arg("color-inpaint")); in main() 561 throw runtime_error("unknown motion model: " + str); in motionModel()
|