Home
last modified time | relevance | path

Searched refs:__ecode (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dregex_error.h150 regex_error(error_type __ecode); in _GLIBCXX_VISIBILITY()
165 regex_error(error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
166 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
171 __throw_regex_error(error_type __ecode __attribute__((__unused__)), in _GLIBCXX_VISIBILITY()
173 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
181 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
185 __throw_regex_error(regex_constants::error_type __ecode, const char* __what); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dregex.cc34 __throw_regex_error(regex_constants::error_type __ecode in __throw_regex_error() argument
36 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode)); } in __throw_regex_error()
83 regex_error::regex_error(regex_constants::error_type __ecode) in regex_error() argument
84 : std::runtime_error(desc(__ecode)), _M_code(__ecode) in regex_error()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dregex_error.h145 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
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()
169 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
172 __throw_regex_error(regex_constants::error_type __ecode in _GLIBCXX_VISIBILITY()
175 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dregex.cc34 __throw_regex_error(regex_constants::error_type __ecode in __throw_regex_error() argument
36 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode)); } in __throw_regex_error()
38 regex_error::regex_error(regex_constants::error_type __ecode) in regex_error() argument
39 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dregex419 regex_error(regex_constants::error_type __ecode)
420 : std::runtime_error("regex_error"), _M_code(__ecode)
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dregex419 regex_error(regex_constants::error_type __ecode)
420 : std::runtime_error("regex_error"), _M_code(__ecode)
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dregex987 explicit regex_error(regex_constants::error_type __ecode);