Home
last modified time | relevance | path

Searched defs:system_error (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libcxx/src/
H A Dsystem_error.cpp194 system_error::system_error(error_code ec, const string& what_arg) system_error() function in system_error
197 system_error::system_error(error_code ec, const char* what_arg) system_error() function in system_error
200 system_error::system_error(error_code ec) : runtime_error(make_error_str(ec)), __ec_(ec) {} system_error() function in system_error
202 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) system_error() function in system_error
205 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) system_error() function in system_error
208 system_error::system_error(int ev, const error_category& ecat) system_error() function in system_error
[all...]
/llvm-project/clang/test/SemaCXX/
H A DPR9461.cpp31 struct system_error:runtime_error{ // expected-note {{to match}} struct