OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:runtime_error
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/clang/test/SemaCXX/
PR9460.cpp
11
struct
runtime_error
{ // expected-note {{candidate constructor}}
struct
12
runtime_error
( // expected-note {{candidate constructor}}
15
runtime_error
(0); // expected-error {{no matching conversion}}
PR9461.cpp
29
struct
runtime_error
{
runtime_error
(string);}; // expected-note 2 {{candidate constructor}}
struct
31
struct system_error:
runtime_error
{ // expected-note {{to match}} expected-note {{specified here}}
/external/llvm/test/FrontendC++/
weak-external.cpp
16
throw(std::
runtime_error
("string"));
/external/stlport/stlport/stl/
_stdexcept.h
41
class _STLP_CLASS_DECLSPEC
runtime_error
: public __Named_exception {
class in inherits:__Named_exception
43
runtime_error
(const string& __s) : __Named_exception(__s) {}
function in class:runtime_error
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) {}
89
class _STLP_CLASS_DECLSPEC overflow_error : public
runtime_error
{
91
overflow_error(const string& __arg) :
runtime_error
(__arg) {}
97
class _STLP_CLASS_DECLSPEC underflow_error : public
runtime_error
{
99
underflow_error(const string& __arg) :
runtime_error
(__arg) {}
/external/stlport/test/unit/
messages_facets_test.cpp
19
* a
runtime_error
exception.
27
catch (
runtime_error
const& /* e */) {
39
catch (
runtime_error
const& /* e */) {
51
catch (
runtime_error
const& e) {
65
catch (
runtime_error
const&) {
76
catch (
runtime_error
const&) {
exception_test.cpp
72
throw std::
runtime_error
( std::string( "message" ) );
74
catch ( std::
runtime_error
& err ) {
140
throw std::
runtime_error
(foo);
142
catch (std::
runtime_error
const& e) {
144
std::
runtime_error
clone("");
153
throw std::
runtime_error
(foo);
155
catch (std::
runtime_error
e) {
157
std::
runtime_error
clone("");
167
throw std::
runtime_error
(msg);
169
catch (std::
runtime_error
const& e)
[
all
...]
locale_test.cpp
41
catch (
runtime_error
const&) {
56
* a
runtime_error
exception.
62
catch (
runtime_error
const&) {
72
catch (
runtime_error
const& /* e */) {
84
catch (
runtime_error
const& /* e */) {
98
catch (
runtime_error
const& /* e */) {
111
catch (
runtime_error
const& /* e */) {
122
catch (
runtime_error
const& /* e */) {
134
catch (
runtime_error
const& /* e */) {
200
catch (
runtime_error
& )
[
all
...]
num_facets_test.cpp
144
catch (
runtime_error
const&) {
174
* a
runtime_error
exception.
182
catch (
runtime_error
const& /* e */) {
194
catch (
runtime_error
const& /* e */) {
207
catch (
runtime_error
const& /* e */) {
217
catch (
runtime_error
const& e) {
229
catch (
runtime_error
const& e) {
251
catch (
runtime_error
const& /* e */) {
263
catch (
runtime_error
const& e) {
277
catch (
runtime_error
const&)
[
all
...]
/ndk/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h
41
class _STLP_CLASS_DECLSPEC
runtime_error
: public __Named_exception {
class in inherits:__Named_exception
43
runtime_error
(const string& __s) : __Named_exception(__s) {}
function in class:runtime_error
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) {}
89
class _STLP_CLASS_DECLSPEC overflow_error : public
runtime_error
{
91
overflow_error(const string& __arg) :
runtime_error
(__arg) {}
97
class _STLP_CLASS_DECLSPEC underflow_error : public
runtime_error
{
99
underflow_error(const string& __arg) :
runtime_error
(__arg) {}
/ndk/tests/device/test-gnustl-full/unit/
messages_facets_test.cpp
19
* a
runtime_error
exception.
27
catch (
runtime_error
const& /* e */) {
39
catch (
runtime_error
const& /* e */) {
51
catch (
runtime_error
const& e) {
65
catch (
runtime_error
const&) {
76
catch (
runtime_error
const&) {
exception_test.cpp
72
throw std::
runtime_error
( std::string( "message" ) );
74
catch ( std::
runtime_error
& err ) {
140
throw std::
runtime_error
(foo);
142
catch (std::
runtime_error
const& e) {
144
std::
runtime_error
clone("");
153
throw std::
runtime_error
(foo);
155
catch (std::
runtime_error
e) {
157
std::
runtime_error
clone("");
167
throw std::
runtime_error
(msg);
169
catch (std::
runtime_error
const& e)
[
all
...]
locale_test.cpp
41
catch (
runtime_error
const&) {
56
* a
runtime_error
exception.
62
catch (
runtime_error
const&) {
72
catch (
runtime_error
const& /* e */) {
84
catch (
runtime_error
const& /* e */) {
98
catch (
runtime_error
const& /* e */) {
111
catch (
runtime_error
const& /* e */) {
122
catch (
runtime_error
const& /* e */) {
134
catch (
runtime_error
const& /* e */) {
200
catch (
runtime_error
& )
[
all
...]
num_facets_test.cpp
144
catch (
runtime_error
const&) {
174
* a
runtime_error
exception.
182
catch (
runtime_error
const& /* e */) {
194
catch (
runtime_error
const& /* e */) {
207
catch (
runtime_error
const& /* e */) {
217
catch (
runtime_error
const& e) {
229
catch (
runtime_error
const& e) {
251
catch (
runtime_error
const& /* e */) {
263
catch (
runtime_error
const& e) {
277
catch (
runtime_error
const&)
[
all
...]
/ndk/tests/device/test-stlport/unit/
messages_facets_test.cpp
19
* a
runtime_error
exception.
27
catch (
runtime_error
const& /* e */) {
39
catch (
runtime_error
const& /* e */) {
51
catch (
runtime_error
const& e) {
65
catch (
runtime_error
const&) {
76
catch (
runtime_error
const&) {
exception_test.cpp
72
throw std::
runtime_error
( std::string( "message" ) );
74
catch ( std::
runtime_error
& err ) {
140
throw std::
runtime_error
(foo);
142
catch (std::
runtime_error
const& e) {
144
std::
runtime_error
clone("");
153
throw std::
runtime_error
(foo);
155
catch (std::
runtime_error
e) {
157
std::
runtime_error
clone("");
167
throw std::
runtime_error
(msg);
169
catch (std::
runtime_error
const& e)
[
all
...]
locale_test.cpp
41
catch (
runtime_error
const&) {
56
* a
runtime_error
exception.
62
catch (
runtime_error
const&) {
72
catch (
runtime_error
const& /* e */) {
84
catch (
runtime_error
const& /* e */) {
98
catch (
runtime_error
const& /* e */) {
111
catch (
runtime_error
const& /* e */) {
122
catch (
runtime_error
const& /* e */) {
134
catch (
runtime_error
const& /* e */) {
200
catch (
runtime_error
& )
[
all
...]
num_facets_test.cpp
144
catch (
runtime_error
const&) {
174
* a
runtime_error
exception.
182
catch (
runtime_error
const& /* e */) {
194
catch (
runtime_error
const& /* e */) {
207
catch (
runtime_error
const& /* e */) {
217
catch (
runtime_error
const& e) {
229
catch (
runtime_error
const& e) {
251
catch (
runtime_error
const& /* e */) {
263
catch (
runtime_error
const& e) {
277
catch (
runtime_error
const&)
[
all
...]
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h
41
class _STLP_CLASS_DECLSPEC
runtime_error
: public __Named_exception {
class in inherits:__Named_exception
43
runtime_error
(const string& __s) : __Named_exception(__s) {}
function in class:runtime_error
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) {}
89
class _STLP_CLASS_DECLSPEC overflow_error : public
runtime_error
{
91
overflow_error(const string& __arg) :
runtime_error
(__arg) {}
97
class _STLP_CLASS_DECLSPEC underflow_error : public
runtime_error
{
99
underflow_error(const string& __arg) :
runtime_error
(__arg) {}
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h
41
class _STLP_CLASS_DECLSPEC
runtime_error
: public __Named_exception {
class in inherits:__Named_exception
43
runtime_error
(const string& __s) : __Named_exception(__s) {}
function in class:runtime_error
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) {}
89
class _STLP_CLASS_DECLSPEC overflow_error : public
runtime_error
{
91
overflow_error(const string& __arg) :
runtime_error
(__arg) {}
97
class _STLP_CLASS_DECLSPEC underflow_error : public
runtime_error
{
99
underflow_error(const string& __arg) :
runtime_error
(__arg) {}
/ndk/tests/device/test-gnustl-1/jni/
hello.cpp
24
throw std::
runtime_error
("OK: Hello, world (with full C++ support) !");
/external/oprofile/libutil++/
op_exception.cpp
43
runtime_error
(msg)
49
runtime_error
(msg + "\ncause: " + strerror(cerrno))
op_exception.h
52
struct op_runtime_error : std::
runtime_error
/external/chromium/testing/gtest/test/
gtest_catch_exceptions_test_.cc
109
throw std::
runtime_error
("Standard C++ exception"));
151
throw std::
runtime_error
("Standard C++ exception"));
166
throw std::
runtime_error
("Standard C++ exception");
204
throw std::
runtime_error
("Standard C++ exception");
225
virtual void SetUp() { throw std::
runtime_error
("Standard C++ exception"); }
255
throw std::
runtime_error
("Standard C++ exception");
284
throw std::
runtime_error
("Standard C++ exception");
gtest_throw_on_failure_ex_test.cc
52
// std::
runtime_error
.
63
// A failed assertion should throw a subclass of std::
runtime_error
.
66
} catch(const std::
runtime_error
& e) {
/external/gtest/test/
gtest_throw_on_failure_ex_test.cc
52
// std::
runtime_error
.
63
// A failed assertion should throw a subclass of std::
runtime_error
.
66
} catch(const std::
runtime_error
& e) {
Completed in 1706 milliseconds
1
2
3