Home
last modified time | relevance | path

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

12

/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/bits/
A Dregex_error.h143 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
157 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
167 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
171 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/bits/
A Dregex_error.h146 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
160 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
161 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
173 __throw_regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
174 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/bits/
A Dregex_error.h143 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
157 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
167 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode in _GLIBCXX_VISIBILITY()
173 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/bits/
A Dregex_error.h143 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
157 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
167 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
171 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/bits/
A Dregex_error.h146 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
160 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
161 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
173 __throw_regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
174 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/bits/
A Dregex_error.h143 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
157 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
158 : std::runtime_error(__what), _M_code(__ecode) in _GLIBCXX_VISIBILITY()
167 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
170 __throw_regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
171 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode, __what)); } in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/
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()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++11/
A Dregex.cc32 regex_error::regex_error(regex_constants::error_type __ecode) in regex_error() argument
33 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
A Dfunctexcept.cc142 __throw_regex_error(regex_constants::error_type __ecode in __throw_regex_error() argument
144 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode)); } in __throw_regex_error()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/src/c++11/
A Dregex.cc32 regex_error::regex_error(regex_constants::error_type __ecode) in regex_error() argument
33 : std::runtime_error("regex_error"), _M_code(__ecode) in regex_error()
A Dfunctexcept.cc139 __throw_regex_error(regex_constants::error_type __ecode in __throw_regex_error() argument
141 { _GLIBCXX_THROW_OR_ABORT(regex_error(__ecode)); } in __throw_regex_error()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/bits/
A Dregex_error.h146 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
163 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/bits/
A Dregex_error.h146 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
163 __throw_regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
/l4re-core-master/uclibc/lib/contrib/uclibc/include/
A Dnetdb.h698 extern const char *gai_strerror (int __ecode) __THROW;
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/tr1/
A Dregex422 regex_error(regex_constants::error_type __ecode)
423 : std::runtime_error("regex_error"), _M_code(__ecode)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/tr1/
A Dregex422 regex_error(regex_constants::error_type __ecode)
423 : std::runtime_error("regex_error"), _M_code(__ecode)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/tr1/
A Dregex422 regex_error(regex_constants::error_type __ecode)
423 : std::runtime_error("regex_error"), _M_code(__ecode)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/tr1/
A Dregex422 regex_error(regex_constants::error_type __ecode)
423 : std::runtime_error("regex_error"), _M_code(__ecode)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/tr1/
A Dregex419 regex_error(regex_constants::error_type __ecode)
420 : std::runtime_error("regex_error"), _M_code(__ecode)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/tr1/
A Dregex419 regex_error(regex_constants::error_type __ecode)
420 : std::runtime_error("regex_error"), _M_code(__ecode)

Completed in 67 milliseconds

12