Home
last modified time | relevance | path

Searched refs:regex_constants (Results 1 – 25 of 139) sorted by relevance

123456

/netbsd-src/external/apache2/llvm/dist/libcxx/src/
H A Dregex.cpp17 make_error_type_string(regex_constants::error_type ecode) in make_error_type_string()
21 case regex_constants::error_collate: in make_error_type_string()
23 case regex_constants::error_ctype: in make_error_type_string()
25 case regex_constants::error_escape: in make_error_type_string()
28 case regex_constants::error_backref: in make_error_type_string()
30 case regex_constants::error_brack: in make_error_type_string()
32 case regex_constants::error_paren: in make_error_type_string()
34 case regex_constants::error_brace: in make_error_type_string()
36 case regex_constants::error_badbrace: in make_error_type_string()
38 case regex_constants::error_range: in make_error_type_string()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dregex_scanner.h81 typedef regex_constants::syntax_option_type _FlagT; in _GLIBCXX_VISIBILITY()
99 : _M_flags & regex_constants::basic in _GLIBCXX_VISIBILITY()
101 : _M_flags & regex_constants::extended in _GLIBCXX_VISIBILITY()
103 : _M_flags & regex_constants::grep in _GLIBCXX_VISIBILITY()
105 : _M_flags & regex_constants::egrep in _GLIBCXX_VISIBILITY()
107 : _M_flags & regex_constants::awk in _GLIBCXX_VISIBILITY()
126 { return _M_flags & regex_constants::ECMAScript; } in _GLIBCXX_VISIBILITY()
130 { return _M_flags & (regex_constants::basic | regex_constants::grep); } in _GLIBCXX_VISIBILITY()
135 return _M_flags & (regex_constants::extended in _GLIBCXX_VISIBILITY()
136 | regex_constants::egrep in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex.h57 regex_constants::match_flag_type __flags, in _GLIBCXX_VISIBILITY()
428 typedef regex_constants::syntax_option_type flag_type; in _GLIBCXX_VISIBILITY()
436 static constexpr flag_type icase = regex_constants::icase; in _GLIBCXX_VISIBILITY()
437 static constexpr flag_type nosubs = regex_constants::nosubs; in _GLIBCXX_VISIBILITY()
438 static constexpr flag_type optimize = regex_constants::optimize; in _GLIBCXX_VISIBILITY()
439 static constexpr flag_type collate = regex_constants::collate; in _GLIBCXX_VISIBILITY()
440 static constexpr flag_type ECMAScript = regex_constants::ECMAScript; in _GLIBCXX_VISIBILITY()
441 static constexpr flag_type basic = regex_constants::basic; in _GLIBCXX_VISIBILITY()
442 static constexpr flag_type extended = regex_constants::extended; in _GLIBCXX_VISIBILITY()
443 static constexpr flag_type awk = regex_constants::awk; in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex_scanner.tcc110 regex_constants::error_escape, in _M_scan_normal()
128 __throw_regex_error(regex_constants::error_paren); in _M_scan_normal()
148 __throw_regex_error(regex_constants::error_paren, in _M_scan_normal()
152 else if (_M_flags & regex_constants::nosubs) in _M_scan_normal()
179 __throw_regex_error(regex_constants::_S_null); in _M_scan_normal()
211 __throw_regex_error(regex_constants::error_brack); in _M_scan_in_bracket()
220 __throw_regex_error(regex_constants::error_brack, in _M_scan_in_bracket()
272 __throw_regex_error(regex_constants::error_brace); in _M_scan_in_brace()
296 __throw_regex_error(regex_constants::error_badbrace); in _M_scan_in_brace()
304 __throw_regex_error(regex_constants::error_badbrace); in _M_scan_in_brace()
[all …]
H A Dregex_compiler.tcc78 __throw_regex_error(regex_constants::error_paren); in _Compiler()
160 __throw_regex_error(regex_constants::error_paren); in _M_assertion()
178 bool __neg = (_M_flags & regex_constants::ECMAScript); in _M_quantifier()
182 __throw_regex_error(regex_constants::error_badrepeat); in _M_quantifier()
218 __throw_regex_error(regex_constants::error_badrepeat); in _M_quantifier()
220 __throw_regex_error(regex_constants::error_badbrace); in _M_quantifier()
236 __throw_regex_error(regex_constants::error_brace); in _M_quantifier()
255 __throw_regex_error(regex_constants::error_badbrace); in _M_quantifier()
286 if (!(_M_flags & regex_constants::icase))\
287 if (!(_M_flags & regex_constants::collate))\
[all …]
H A Dregex_executor.h64 typedef regex_constants::match_flag_type _FlagT; in _GLIBCXX_VISIBILITY()
84 using namespace regex_constants; in _GLIBCXX_VISIBILITY() local
172 if (_M_flags & regex_constants::match_not_bol) in _GLIBCXX_VISIBILITY()
175 if (_M_flags & regex_constants::match_prev_avail) in _GLIBCXX_VISIBILITY()
197 return !(_M_flags & regex_constants::match_not_eol); in _GLIBCXX_VISIBILITY()
218 if (_M_re._M_automaton->_M_options() & regex_constants::ECMAScript) in _GLIBCXX_VISIBILITY()
231 = regex_constants::ECMAScript | regex_constants::__multiline; in _GLIBCXX_VISIBILITY()
H A Dregex_error.h42 namespace regex_constants in _GLIBCXX_VISIBILITY()
139 using error_type = regex_constants::error_type; in _GLIBCXX_VISIBILITY()
159 regex_constants::error_type 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()
H A Dregex.tcc52 regex_constants::match_flag_type __flags, in __regex_algo_impl()
64 if ((__re.flags() & regex_constants::__polynomial) in __regex_algo_impl()
373 if (__flags & regex_constants::format_sed) in format()
467 regex_constants::match_flag_type __flags) in __regex_replace()
474 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
482 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
487 if (__flags & regex_constants::format_first_only) in __regex_replace()
490 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
540 | regex_constants::match_not_null in operator ++()
541 | regex_constants::match_continuous)) in operator ++()
[all …]
H A Dregex_executor.tcc44 if (_M_flags & regex_constants::match_continuous) in _M_search()
46 _M_flags |= regex_constants::match_prev_avail; in _M_search()
408 _M_re.flags() & regex_constants::icase, in _M_handle_backref()
437 && (_M_flags & regex_constants::match_not_null)) in _M_handle_accept()
441 if (_M_nfa._M_flags & regex_constants::ECMAScript) in _M_handle_accept()
467 && (_M_flags & regex_constants::match_not_null)) in _M_handle_accept()
485 if (_M_nfa._M_flags & regex_constants::ECMAScript) in _M_handle_alternative()
548 if (_M_current == _M_begin && (_M_flags & regex_constants::match_not_bow)) in _M_word_boundary()
550 if (_M_current == _M_end && (_M_flags & regex_constants::match_not_eow)) in _M_word_boundary()
555 || (_M_flags & regex_constants::match_prev_avail)) in _M_word_boundary()
H A Dregex_automaton.tcc151 if (this->_M_flags & regex_constants::__polynomial) in _M_insert_backref()
152 __throw_regex_error(regex_constants::error_complexity, in _M_insert_backref()
163 regex_constants::error_backref, in _M_insert_backref()
168 regex_constants::error_backref, in _M_insert_backref()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dregex_scanner.h81 typedef regex_constants::syntax_option_type _FlagT; in _GLIBCXX_VISIBILITY()
99 : _M_flags & regex_constants::basic in _GLIBCXX_VISIBILITY()
101 : _M_flags & regex_constants::extended in _GLIBCXX_VISIBILITY()
103 : _M_flags & regex_constants::grep in _GLIBCXX_VISIBILITY()
105 : _M_flags & regex_constants::egrep in _GLIBCXX_VISIBILITY()
107 : _M_flags & regex_constants::awk in _GLIBCXX_VISIBILITY()
126 { return _M_flags & regex_constants::ECMAScript; } in _GLIBCXX_VISIBILITY()
130 { return _M_flags & (regex_constants::basic | regex_constants::grep); } in _GLIBCXX_VISIBILITY()
135 return _M_flags & (regex_constants::extended in _GLIBCXX_VISIBILITY()
136 | regex_constants::egrep in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex.h56 regex_constants::match_flag_type __flags); in _GLIBCXX_VISIBILITY()
398 typedef regex_constants::syntax_option_type flag_type; in _GLIBCXX_VISIBILITY()
406 static constexpr flag_type icase = regex_constants::icase; in _GLIBCXX_VISIBILITY()
407 static constexpr flag_type nosubs = regex_constants::nosubs; in _GLIBCXX_VISIBILITY()
408 static constexpr flag_type optimize = regex_constants::optimize; in _GLIBCXX_VISIBILITY()
409 static constexpr flag_type collate = regex_constants::collate; in _GLIBCXX_VISIBILITY()
410 static constexpr flag_type ECMAScript = regex_constants::ECMAScript; in _GLIBCXX_VISIBILITY()
411 static constexpr flag_type basic = regex_constants::basic; in _GLIBCXX_VISIBILITY()
412 static constexpr flag_type extended = regex_constants::extended; in _GLIBCXX_VISIBILITY()
413 static constexpr flag_type awk = regex_constants::awk; in _GLIBCXX_VISIBILITY()
[all …]
H A Dregex_scanner.tcc111 regex_constants::error_escape, in _M_scan_normal()
130 regex_constants::error_paren, in _M_scan_normal()
152 regex_constants::error_paren, in _M_scan_normal()
155 else if (_M_flags & regex_constants::nosubs) in _M_scan_normal()
183 __throw_regex_error(regex_constants::_S_null, in _M_scan_normal()
218 regex_constants::error_brack, in _M_scan_in_bracket()
228 __throw_regex_error(regex_constants::error_brack, in _M_scan_in_bracket()
280 regex_constants::error_brace, in _M_scan_in_brace()
305 __throw_regex_error(regex_constants::error_badbrace, in _M_scan_in_brace()
314 __throw_regex_error(regex_constants::error_badbrace, in _M_scan_in_brace()
[all …]
H A Dregex_error.h42 namespace regex_constants in _GLIBCXX_VISIBILITY()
136 regex_constants::error_type _M_code; in _GLIBCXX_VISIBILITY()
145 regex_error(regex_constants::error_type __ecode); in _GLIBCXX_VISIBILITY()
154 regex_constants::error_type in _GLIBCXX_VISIBILITY()
159 regex_error(regex_constants::error_type __ecode, const char* __what) in _GLIBCXX_VISIBILITY()
163 friend void __throw_regex_error(regex_constants::error_type, const char*); 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()
H A Dregex_compiler.tcc78 __throw_regex_error(regex_constants::error_paren); in _Compiler()
160 __throw_regex_error(regex_constants::error_paren, in _M_assertion()
179 bool __neg = (_M_flags & regex_constants::ECMAScript); in _M_quantifier()
183 __throw_regex_error(regex_constants::error_badrepeat, in _M_quantifier()
220 __throw_regex_error(regex_constants::error_badrepeat, in _M_quantifier()
223 __throw_regex_error(regex_constants::error_badbrace, in _M_quantifier()
240 __throw_regex_error(regex_constants::error_brace, in _M_quantifier()
260 __throw_regex_error(regex_constants::error_badbrace, in _M_quantifier()
292 if (!(_M_flags & regex_constants::icase))\
293 if (!(_M_flags & regex_constants::collate))\
[all …]
H A Dregex_executor.h64 typedef regex_constants::match_flag_type _FlagT; in _GLIBCXX_VISIBILITY()
81 _M_flags((__flags & regex_constants::match_prev_avail) in _GLIBCXX_VISIBILITY()
83 & ~regex_constants::match_not_bol in _GLIBCXX_VISIBILITY()
84 & ~regex_constants::match_not_bow) in _GLIBCXX_VISIBILITY()
169 && !(_M_flags & (regex_constants::match_not_bol in _GLIBCXX_VISIBILITY()
170 | regex_constants::match_prev_avail)); in _GLIBCXX_VISIBILITY()
177 && !(_M_flags & regex_constants::match_not_eol); in _GLIBCXX_VISIBILITY()
H A Dregex.tcc54 regex_constants::match_flag_type __flags) in __regex_algo_impl()
64 if ((__re.flags() & regex_constants::__polynomial) in __regex_algo_impl()
373 if (__flags & regex_constants::format_sed) in format()
467 regex_constants::match_flag_type __flags) in __regex_replace()
474 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
482 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
487 if (__flags & regex_constants::format_first_only) in __regex_replace()
490 if (!(__flags & regex_constants::format_no_copy)) in __regex_replace()
540 | regex_constants::match_not_null in operator ++()
541 | regex_constants::match_continuous)) in operator ++()
[all …]
H A Dregex_executor.tcc44 if (_M_flags & regex_constants::match_continuous) in _M_search()
46 _M_flags |= regex_constants::match_prev_avail; in _M_search()
407 _M_re.flags() & regex_constants::icase, in _M_handle_backref()
436 && (_M_flags & regex_constants::match_not_null)) in _M_handle_accept()
440 if (_M_nfa._M_flags & regex_constants::ECMAScript) in _M_handle_accept()
466 && (_M_flags & regex_constants::match_not_null)) in _M_handle_accept()
484 if (_M_nfa._M_flags & regex_constants::ECMAScript) in _M_handle_alternative()
547 if (_M_current == _M_begin && (_M_flags & regex_constants::match_not_bow)) in _M_word_boundary()
549 if (_M_current == _M_end && (_M_flags & regex_constants::match_not_eow)) in _M_word_boundary()
554 || (_M_flags & regex_constants::match_prev_avail)) in _M_word_boundary()
H A Dregex_automaton.tcc151 if (this->_M_flags & regex_constants::__polynomial) in _M_insert_backref()
152 __throw_regex_error(regex_constants::error_complexity, in _M_insert_backref()
163 regex_constants::error_backref, in _M_insert_backref()
168 regex_constants::error_backref, in _M_insert_backref()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dregex21 namespace regex_constants
81 } // regex_constants
87 explicit regex_error(regex_constants::error_type ecode);
88 regex_constants::error_type code() const;
132 typedef regex_constants::syntax_option_type flag_type;
136 static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
137 static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
138 static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
139 static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
140 static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
[all …]
/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()
41 desc(regex_constants::error_type e) in desc()
43 using namespace regex_constants; in desc()
83 regex_error::regex_error(regex_constants::error_type __ecode) in regex_error()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dregex58 /** @namespace std::regex_constants
61 namespace regex_constants
419 regex_error(regex_constants::error_type __ecode)
428 regex_constants::error_type
433 regex_constants::error_type _M_code;
730 typedef regex_constants::syntax_option_type flag_type;
739 static const regex_constants::syntax_option_type icase
740 = regex_constants::icase;
741 static const regex_constants::syntax_option_type nosubs
742 = regex_constants::nosubs;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dregex58 /** @namespace std::regex_constants
61 namespace regex_constants
419 regex_error(regex_constants::error_type __ecode)
428 regex_constants::error_type
433 regex_constants::error_type _M_code;
730 typedef regex_constants::syntax_option_type flag_type;
739 static const regex_constants::syntax_option_type icase
740 = regex_constants::icase;
741 static const regex_constants::syntax_option_type nosubs
742 = regex_constants::nosubs;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/cmake/
H A Dstd_regex.cpp7 std::regex_constants::extended | std::regex_constants::nosubs); in main()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/
H A Dstd_regex.cpp7 std::regex_constants::extended | std::regex_constants::nosubs); in main()

123456