HomeSort by relevance Sort by last modified time
    Searched defs:runtime_error (Results 1 - 6 of 6) sorted by null

  /external/clang/test/SemaCXX/
PR9460.cpp 11 struct runtime_error{ struct
12 runtime_error(
15 runtime_error(0);
PR9461.cpp 29 struct runtime_error{runtime_error(string);}; struct
31 struct system_error:runtime_error{ // expected-note {{to match}}
warn-consumed-analysis.cpp 663 class runtime_error class in namespace:ContinueICETest
666 virtual ~runtime_error();
671 if(sf) throw runtime_error();
  /external/libcxx/src/
stdexcept.cpp 63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) function in class:std::runtime_error
67 runtime_error::runtime_error(const char* msg) : __imp_(msg) function in class:std::runtime_error
71 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
76 runtime_error&
77 runtime_error::operator=(const runtime_error& le) _NOEXCEP
    [all...]
  /external/clang/test/CodeGenCXX/
weak-external.cpp 45 class _LIBCPP_EXCEPTION_ABI runtime_error class in namespace:std
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"));
  /external/chromium_org/chrome/browser/extensions/error_console/
error_console_browsertest.cc 43 CHECK(error->type() == ExtensionError::RUNTIME_ERROR);
93 ExtensionError::RUNTIME_ERROR,
99 const RuntimeError* runtime_error = static_cast<const RuntimeError*>(error); local
100 EXPECT_EQ(level, runtime_error->level());
101 EXPECT_EQ(context, runtime_error->context_url());
102 EXPECT_EQ(expected_stack_size, runtime_error->stack_trace().size());

Completed in 504 milliseconds