Lines Matching refs:system_error
2 //===---------------------------- system_error ----------------------------===//
14 system_error synopsis
107 class system_error
111 system_error(error_code ec, const string& what_arg);
112 system_error(error_code ec, const char* what_arg);
113 system_error(error_code ec);
114 system_error(int ev, const error_category& ecat, const string& what_arg);
115 system_error(int ev, const error_category& ecat, const char* what_arg);
116 system_error(int ev, const error_category& ecat);
459 // system_error
461 class _LIBCPP_TYPE_VIS system_error
466 system_error(error_code __ec, const string& __what_arg);
467 system_error(error_code __ec, const char* __what_arg);
468 system_error(error_code __ec);
469 system_error(int __ev, const error_category& __ecat, const string& __what_arg);
470 system_error(int __ev, const error_category& __ecat, const char* __what_arg);
471 system_error(int __ev, const error_category& __ecat);
472 system_error(const system_error&) _NOEXCEPT = default;
473 ~system_error() _NOEXCEPT;