/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | regex_error.h | 165 regex_error(error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY() 166 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY() 172 const char* __what __attribute__((__unused__))) in _GLIBCXX_VISIBILITY() 173 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY() 185 __throw_regex_error(regex_constants::error_type __ecode, const char* __what); in _GLIBCXX_VISIBILITY()
|
H A D | regex_executor.tcc | 154 _ResultsVec __what(_M_cur_results); in _M_lookahead() local 155 _Executor __sub(_M_current, _M_end, __what, _M_re, _M_flags); in _M_lookahead() 159 for (size_t __i = 0; __i < __what.size(); __i++) in _M_lookahead() 160 if (__what[__i].matched) in _M_lookahead() 161 _M_cur_results[__i] = __what[__i]; in _M_lookahead()
|
H A D | regex.h | 2293 match_results<_Bi_iter> __what; in _GLIBCXX_VISIBILITY() 2294 return regex_match(__first, __last, __what, __re, __flags); in _GLIBCXX_VISIBILITY() 2446 match_results<_Bi_iter> __what; in _GLIBCXX_VISIBILITY() 2447 return regex_search(__first, __last, __what, __re, __flags); in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | regex_error.h | 159 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY() 160 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY() 174 const char* __what __attribute__((__unused__))) in _GLIBCXX_VISIBILITY() 175 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
|
H A D | regex_executor.tcc | 153 _ResultsVec __what(_M_cur_results); in _M_lookahead() local 154 _Executor __sub(_M_current, _M_end, __what, _M_re, _M_flags); in _M_lookahead() 158 for (size_t __i = 0; __i < __what.size(); __i++) in _M_lookahead() 159 if (__what[__i].matched) in _M_lookahead() 160 _M_cur_results[__i] = __what[__i]; in _M_lookahead()
|
H A D | regex.h | 2204 match_results<_Bi_iter> __what; in _GLIBCXX_VISIBILITY() local 2205 return regex_match(__first, __last, __what, __re, __flags); in _GLIBCXX_VISIBILITY() 2358 match_results<_Bi_iter> __what; in _GLIBCXX_VISIBILITY() local 2359 return regex_search(__first, __last, __what, __re, __flags); in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | system_error | 437 system_error(error_code __ec, const string& __what) 438 : runtime_error(__what + ": " + __ec.message()), _M_code(__ec) { } 440 system_error(error_code __ec, const char* __what) 441 : runtime_error(__what + (": " + __ec.message())), _M_code(__ec) { } 443 system_error(int __v, const error_category& __ecat, const char* __what) 444 : system_error(error_code(__v, __ecat), __what) { } 450 system_error(int __v, const error_category& __ecat, const string& __what) 451 : runtime_error(__what + ": " + error_code(__v, __ecat).message()),
|
H A D | variant | 1278 friend void __throw_bad_variant_access(const char* __what); 1283 __throw_bad_variant_access(const char* __what) 1284 { _GLIBCXX_THROW_OR_ABORT(bad_variant_access(__what)); }
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | system_error | 561 system_error(error_code __ec, const string& __what) 562 : runtime_error(__what + ": " + __ec.message()), _M_code(__ec) { } 564 system_error(error_code __ec, const char* __what) 565 : runtime_error(__what + (": " + __ec.message())), _M_code(__ec) { } 567 system_error(int __v, const error_category& __ecat, const char* __what) 568 : system_error(error_code(__v, __ecat), __what) { } 574 system_error(int __v, const error_category& __ecat, const string& __what) 575 : runtime_error(__what + ": " + error_code(__v, __ecat).message()),
|
H A D | variant | 1342 friend void __throw_bad_variant_access(const char* __what); 1347 __throw_bad_variant_access(const char* __what) 1348 { _GLIBCXX_THROW_OR_ABORT(bad_variant_access(__what)); }
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/ |
H A D | std-path.cc | 738 fs_err_concat(const string& __what, const string& __path1, in fs_err_concat() argument 741 const size_t __len = 18 + __what.length() in fs_err_concat() 747 __ret += __what; in fs_err_concat()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | filesystem | 1689 filesystem_error(const string& __what, error_code __ec) 1690 : system_error(__ec, __what), 1696 filesystem_error(const string& __what, const path& __p1, error_code __ec) 1697 : system_error(__ec, __what), 1703 filesystem_error(const string& __what, const path& __p1, const path& __p2, 1705 : system_error(__ec, __what),
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 874 void shutdown(shutdown_type __what) 875 { return shutdown(__what, __throw_on_error{"basic_socket::shutdown"}); } 878 shutdown(shutdown_type __what, error_code& __ec) 881 if (::shutdown(native_handle(), static_cast<int>(__what)) == -1)
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 910 void shutdown(shutdown_type __what) 911 { return shutdown(__what, __throw_on_error{"basic_socket::shutdown"}); } 914 shutdown(shutdown_type __what, error_code& __ec) 917 if (::shutdown(native_handle(), static_cast<int>(__what)) == -1)
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
H A D | regex | 2157 match_results<_Bi_iter> __what; 2158 return regex_match(__first, __last, __what, __re, __flags); 2296 match_results<_Bi_iter> __what; 2297 return regex_search(__first, __last, __what, __re, __flags);
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
H A D | regex | 2157 match_results<_Bi_iter> __what; 2158 return regex_match(__first, __last, __what, __re, __flags); 2296 match_results<_Bi_iter> __what; 2297 return regex_search(__first, __last, __what, __re, __flags);
|