Home
last modified time | relevance | path

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

/external/stlport/test/unit/
Dexception_test.cpp72 throw std::runtime_error( std::string( "message" ) ); in what()
74 catch ( std::runtime_error& err ) { in what()
140 throw std::runtime_error(foo); in exception_emission()
142 catch (std::runtime_error const& e) { in exception_emission()
144 std::runtime_error clone(""); in exception_emission()
153 throw std::runtime_error(foo); in exception_emission()
155 catch (std::runtime_error e) { in exception_emission()
157 std::runtime_error clone(""); in exception_emission()
167 throw std::runtime_error(msg); in exception_emission()
169 catch (std::runtime_error const& e) { in exception_emission()
[all …]
Dlocale_test.cpp41 catch (runtime_error const&) { in test_supported_locale()
62 catch (runtime_error const&) { in locale_by_name()
72 catch (runtime_error const& /* e */) { in locale_by_name()
84 catch (runtime_error const& /* e */) { in locale_by_name()
98 catch (runtime_error const& /* e */) { in locale_by_name()
111 catch (runtime_error const& /* e */) { in locale_by_name()
122 catch (runtime_error const& /* e */) { in locale_by_name()
134 catch (runtime_error const& /* e */) { in locale_by_name()
200 catch ( runtime_error& ) { in _locale_init_problem()
214 catch ( runtime_error& ) { in _locale_init_problem()
[all …]
Dtime_facets_test.cpp207 catch (runtime_error const&) { in test_supported_locale()
248 catch (runtime_error const&) { in time_by_name()
259 catch (runtime_error const&) { in time_by_name()
271 catch (runtime_error const& /* e */) { in time_by_name()
282 catch (runtime_error const&) { in time_by_name()
292 catch (runtime_error const&) { in time_by_name()
304 catch (runtime_error const& /* e */) { in time_by_name()
314 catch (runtime_error const& /* e */) { in time_by_name()
326 catch (runtime_error const& /* e */) { in time_by_name()
337 catch (runtime_error const& /* e */) { in time_by_name()
[all …]
Dnum_facets_test.cpp144 catch (runtime_error const&) { in test_supported_locale()
182 catch (runtime_error const& /* e */) { in numpunct_by_name()
194 catch (runtime_error const& /* e */) { in numpunct_by_name()
207 catch (runtime_error const& /* e */) { in numpunct_by_name()
217 catch (runtime_error const& e) { in numpunct_by_name()
229 catch (runtime_error const& e) { in numpunct_by_name()
251 catch (runtime_error const& /* e */) { in numpunct_by_name()
263 catch (runtime_error const& e) { in numpunct_by_name()
277 catch (runtime_error const&) { in numpunct_by_name()
288 catch (runtime_error const&) { in numpunct_by_name()
Dmessages_facets_test.cpp27 catch (runtime_error const& /* e */) { in messages_by_name()
39 catch (runtime_error const& /* e */) { in messages_by_name()
65 catch (runtime_error const&) { in messages_by_name()
76 catch (runtime_error const&) { in messages_by_name()
Dmoney_facets_test.cpp430 catch (runtime_error const&) { in test_supported_locale()
472 catch (runtime_error const&) { in moneypunct_by_name()
483 catch (runtime_error const&) { in moneypunct_by_name()
495 catch (runtime_error const& /* e */) { in moneypunct_by_name()
507 catch (runtime_error const&) { in moneypunct_by_name()
518 catch (runtime_error const&) { in moneypunct_by_name()
530 catch (runtime_error const& /* e */) { in moneypunct_by_name()
558 catch (runtime_error const& /* e */) { in moneypunct_by_name()
587 catch (runtime_error const& /* e */) { in moneypunct_by_name()
599 catch (runtime_error const& /* e */) { in moneypunct_by_name()
[all …]
Dcollate_facets_test.cpp135 catch (runtime_error const&) { in collate_facet()
154 catch (runtime_error const& /* e */) { in collate_by_name()
166 catch (runtime_error const& /* e */) { in collate_by_name()
179 catch (runtime_error const& /* e */) { in collate_by_name()
189 catch (runtime_error const& e) { in collate_by_name()
201 catch (runtime_error const& e) { in collate_by_name()
245 catch (runtime_error const& /* e */) { in collate_by_name()
259 catch (runtime_error const&) { in collate_by_name()
270 catch (runtime_error const&) { in collate_by_name()
Dctype_facets_test.cpp331 catch (runtime_error const&) { in test_supported_locale()
380 catch (runtime_error const& /* e */) { in ctype_by_name()
392 catch (runtime_error const& /* e */) { in ctype_by_name()
404 catch (runtime_error const& /* e */) { in ctype_by_name()
419 catch (runtime_error const& /* e */) { in ctype_by_name()
432 catch (runtime_error const& /* e */) { in ctype_by_name()
462 catch (runtime_error const& /* e */) { in ctype_by_name()
476 catch (runtime_error const&) { in ctype_by_name()
487 catch (runtime_error const&) { in ctype_by_name()
498 catch (runtime_error const& /* e */) { in ctype_by_name()
[all …]
Dsort_test.cpp205 catch (runtime_error const&) in bad_predicate_detected()
214 catch (runtime_error const&) in bad_predicate_detected()
Dcodecvt_test.cpp421 catch (runtime_error const&) { in in_out_test()
447 catch (runtime_error const&) { in length_test()
561 catch (const runtime_error&) in special_encodings()
647 catch (const runtime_error&) in special_encodings()
Dpartial_test.cpp185 catch (runtime_error const&) in bad_predicate_detected()
195 catch (runtime_error const&) in bad_predicate_detected()
Dfstream_test.cpp444 catch (const runtime_error&) in seek()
/external/stlport/stlport/stl/
D_stdexcept.h41 class _STLP_CLASS_DECLSPEC runtime_error : public __Named_exception {
43 runtime_error(const string& __s) : __Named_exception(__s) {} in runtime_error() function
45 ~runtime_error() _STLP_NOTHROW_INHERENTLY;
81 class _STLP_CLASS_DECLSPEC range_error : public runtime_error {
83 range_error(const string& __arg) : runtime_error(__arg) {} in range_error()
89 class _STLP_CLASS_DECLSPEC overflow_error : public runtime_error {
91 overflow_error(const string& __arg) : runtime_error(__arg) {} in overflow_error()
97 class _STLP_CLASS_DECLSPEC underflow_error : public runtime_error {
99 underflow_error(const string& __arg) : runtime_error(__arg) {} in underflow_error()
D_range_errors.c64 { _STLP_THROW_MSG(runtime_error, __msg); } in __stl_throw_runtime_error()
/external/webkit/JavaScriptCore/tests/mozilla/
Druntests.pl109 $runtime_error = "";
161 $runtime_error .= $_;
171 if ( $runtime_error ) {
177 &js_print( $runtime_error, "<pre>", "</pre>");
/external/stlport/doc/
DREADME.utf813 // Will throw a std::runtime_error exception.
19 // Will throw a std::runtime_error exception:
/external/stlport/src/
Ddll_main.cpp77 runtime_error::~runtime_error() _STLP_NOTHROW_INHERENTLY {} in ~runtime_error()
Dlocale.cpp58 { _STLP_THROW(runtime_error("Invalid null locale name")); } in _M_throw_on_null_name()
65 _STLP_THROW(runtime_error(what.c_str())); in _M_throw_on_combine_error()
97 _STLP_THROW(runtime_error(what.c_str())); in _M_throw_on_creation_failure()
252 _STLP_THROW(runtime_error((string("Invalid locale name '") + _Nameless + "'").c_str())); in locale()
/external/protobuf/gtest/test/
Dgtest_throw_on_failure_ex_test.cc66 } catch(const std::runtime_error& e) { in TestFailureThrowsRuntimeError()
/external/gtest/test/
Dgtest_throw_on_failure_ex_test.cc66 } catch(const std::runtime_error& e) { in TestFailureThrowsRuntimeError()
/external/gtest/src/
Dgtest.cc3275 class GoogleTestFailureException : public ::std::runtime_error {
3278 : runtime_error(PrintTestPartResultToString(failure).c_str()) {} in GoogleTestFailureException()
/external/protobuf/gtest/src/
Dgtest.cc3526 class GoogleTestFailureException : public ::std::runtime_error {
3529 : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} in GoogleTestFailureException()
/external/stlport/etc/
DChangeLog367 runtime_error message thrown by combine message when we cannot
1883 creation failure will always be reported with runtime_error
1995 messages won't generate a runtime_error exception if the platform is
2035 STLport now throws a runtime_error instance when building
DChangeLog-5.11636 is catchable (std::runtime_error exception) and contained message
4184 report it using a runtime_error exception when not supported. When