Home
last modified time | relevance | path

Searched refs:_M_nfa (Results 1 – 11 of 11) sorted by relevance

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dregex_compiler.tcc82 _StateSeqT __r(*_M_nfa, _M_nfa->_M_start()); in _Compiler()
131 _M_stack.push(_StateSeqT(*_M_nfa, _M_nfa->_M_insert_dummy())); in _M_alternative()
155 _M_stack.push(_StateSeqT(*_M_nfa, _M_nfa->_M_insert_line_begin())); in _M_assertion()
157 _M_stack.push(_StateSeqT(*_M_nfa, _M_nfa->_M_insert_line_end())); in _M_assertion()
160 _M_stack.push(_StateSeqT(*_M_nfa, _M_nfa-> in _M_assertion()
173 *_M_nfa, in _M_assertion()
233 _StateSeqT __e(*_M_nfa, _M_nfa->_M_insert_dummy()); in _M_quantifier()
326 _M_stack.push(_StateSeqT(*_M_nfa, _M_nfa-> in _M_atom()
332 _StateSeqT __r(*_M_nfa, _M_nfa->_M_insert_dummy()); in _M_atom()
342 _StateSeqT __r(*_M_nfa, _M_nfa->_M_insert_subexpr_begin()); in _M_atom()
[all …]
H A Dregex_executor.tcc177 const auto& __state = _M_nfa[__i]; in _M_rep_once_more()
207 const auto& __state = _M_nfa[__i]; in _M_handle_repeat()
249 const auto& __state = _M_nfa[__i]; in _M_handle_subexpr_begin()
263 const auto& __state = _M_nfa[__i]; in _M_handle_subexpr_end()
278 const auto& __state = _M_nfa[__i]; in _M_handle_line_begin_assertion()
288 const auto& __state = _M_nfa[__i]; in _M_handle_line_end_assertion()
298 const auto& __state = _M_nfa[__i]; in _M_handle_word_boundary()
310 const auto& __state = _M_nfa[__i]; in _M_handle_subexpr_lookahead()
320 const auto& __state = _M_nfa[__i]; in _M_handle_match()
397 const auto& __state = _M_nfa[__i]; in _M_handle_backref()
[all …]
H A Dregex_executor.h77 _M_nfa(*__re._M_automaton), in _GLIBCXX_VISIBILITY()
79 _M_rep_count(_M_nfa.size()), in _GLIBCXX_VISIBILITY()
80 _M_states(_M_nfa._M_start(), _M_nfa.size()), in _GLIBCXX_VISIBILITY()
244 const _NFAT& _M_nfa; in _GLIBCXX_VISIBILITY()
H A Dregex_automaton.tcc204 auto __dup = _M_nfa[__u]; in _M_clone()
206 auto __id = _M_nfa._M_insert_state(std::move(__dup)); in _M_clone()
221 auto& __ref = _M_nfa[__v]; in _M_clone()
234 return _StateSeq(_M_nfa, __m[_M_start], __m[_M_end]); in _M_clone()
H A Dregex_automaton.h362 : _M_nfa(__nfa), _M_start(__s), _M_end(__s) in _GLIBCXX_VISIBILITY()
366 : _M_nfa(__nfa), _M_start(__s), _M_end(__end) in _GLIBCXX_VISIBILITY()
373 _M_nfa[_M_end]._M_next = __id; in _GLIBCXX_VISIBILITY()
381 _M_nfa[_M_end]._M_next = __s._M_start; in _GLIBCXX_VISIBILITY()
390 _RegexT& _M_nfa; in _GLIBCXX_VISIBILITY()
H A Dregex_compiler.h70 { return std::move(_M_nfa); } in _GLIBCXX_VISIBILITY()
149 shared_ptr<_RegexT> _M_nfa; in _GLIBCXX_VISIBILITY() local
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dregex_nfa.tcc129 _M_nfa[_M_end1]._M_next = __id; in _M_push_back()
139 _M_nfa[_M_end2]._M_alt = __id; in _M_append()
141 _M_nfa[_M_end2]._M_next = __id; in _M_append()
145 _M_nfa[_M_end1]._M_next = __id; in _M_append()
155 _M_nfa[_M_end2]._M_alt = __rhs._M_start; in _M_append()
157 _M_nfa[_M_end2]._M_next = __rhs._M_start; in _M_append()
163 _M_nfa[_M_end1]._M_next = __rhs._M_start; in _M_append()
H A Dregex_nfa.h343 : _M_nfa(__ss), _M_start(__s), _M_end1(__s), _M_end2(__e) in _GLIBCXX_VISIBILITY()
347 : _M_nfa(__e1._M_nfa), in _GLIBCXX_VISIBILITY()
348 _M_start(_M_nfa._M_insert_alt(__e1._M_start, __e2._M_start)), in _GLIBCXX_VISIBILITY()
354 : _M_nfa(__e._M_nfa), in _GLIBCXX_VISIBILITY()
355 _M_start(_M_nfa._M_insert_alt(__id, __e._M_start)), in _GLIBCXX_VISIBILITY()
361 : _M_nfa(__rhs._M_nfa), _M_start(__rhs._M_start), in _GLIBCXX_VISIBILITY()
388 _Nfa& _M_nfa; in _GLIBCXX_VISIBILITY()
H A Dregex_grep_matcher.tcc110 : _M_nfa(static_pointer_cast<_Nfa>(__nfa)), _M_pattern(__p), _M_results(__r) in _Grep_matcher()
112 __regex::_StateSet __t = this->_M_e_closure(_M_nfa->_M_start()); in _Grep_matcher()
114 __t = this->_M_e_closure(__move(_M_pattern, *_M_nfa, __t)); in _Grep_matcher()
117 __includes_some(_M_nfa->_M_final_states(), __t)); in _Grep_matcher()
151 const _State& __state = _M_nfa->operator[](__t); in _M_e_closure()
H A Dregex_grep_matcher.h123 const std::shared_ptr<_Nfa> _M_nfa; in _GLIBCXX_VISIBILITY()
H A Dregex_compiler.h643 _M_nfa() const in _GLIBCXX_VISIBILITY()
1103 __f)._M_nfa())); } in _GLIBCXX_VISIBILITY()