Searched refs:re_brace (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/boost/regex/v4/ |
D | basic_regex_parser.hpp | 163 …re_brace* br = static_cast<re_brace*>(this->append_state(syntax_element_startmark, sizeof(re_brace… in parse() 482 …re_brace* pb = static_cast<re_brace*>(this->append_state(syntax_element_startmark, sizeof(re_brace… in parse_open_paren() 550 pb = static_cast<re_brace*>(this->append_state(syntax_element_endmark, sizeof(re_brace))); in parse_open_paren() 845 …re_brace* pb = static_cast<re_brace*>(this->append_state(syntax_element_startmark, sizeof(re_brace… in parse_extended_escape() 931 …re_brace* pb = static_cast<re_brace*>(this->append_state(syntax_element_backref, sizeof(re_brace))… in parse_extended_escape() 1133 …re_brace* pb = static_cast<re_brace*>(this->insert_state(insert_point, syntax_element_startmark, s… in parse_repeat() 1136 …jmp = static_cast<re_jump*>(this->insert_state(insert_point + sizeof(re_brace), syntax_element_jum… in parse_repeat() 1139 pb = static_cast<re_brace*>(this->append_state(syntax_element_endmark, sizeof(re_brace))); in parse_repeat() 1963 …re_brace* pb = static_cast<re_brace*>(this->append_state(syntax_element_backref, sizeof(re_brace))… in parse_backref() 2058 …re_brace* pb = static_cast<re_brace*>(this->append_state(syntax_element_startmark, sizeof(re_brace… in parse_perl_extension() [all …]
|
D | basic_regex_creator.hpp | 765 int idx = static_cast<const re_brace*>(state)->index; in fixup_recursions() 817 … if((p->type == syntax_element_startmark) && (static_cast<re_brace*>(p)->index == idx)) in fixup_recursions() 841 if(static_cast<const re_brace*>(p)->index == idx) in fixup_recursions() 925 static_cast<re_brace*>(state)->index in create_startmaps() 927 if(static_cast<re_brace*>(state)->index < 0) in create_startmaps() 990 if((static_cast<re_brace*>(state)->index == -1) in calculate_backstep() 991 || (static_cast<re_brace*>(state)->index == -2)) in calculate_backstep() 996 else if(static_cast<re_brace*>(state)->index == -3) in calculate_backstep() 1003 if((static_cast<re_brace*>(state)->index == -1) in calculate_backstep() 1004 || (static_cast<re_brace*>(state)->index == -2)) in calculate_backstep() [all …]
|
D | perl_matcher_recursive.hpp | 124 int index = static_cast<const re_brace*>(pstate)->index; in match_startmark() 125 icase = static_cast<const re_brace*>(pstate)->icase; in match_startmark() 210 bool negated = static_cast<const re_brace*>(pstate)->index == -2; in match_startmark() 909 if(i->idx == static_cast<const re_brace*>(static_cast<const re_jump*>(pstate)->alt.p)->index) in match_recursion() 925 recursion_stack.back().idx = static_cast<const re_brace*>(pstate)->index; in match_recursion() 948 int index = static_cast<const re_brace*>(pstate)->index; in match_endmark() 949 icase = static_cast<const re_brace*>(pstate)->icase; in match_endmark() 1080 if(static_cast<const re_brace*>(pstate)->index == index) in skip_until_paren() 1102 int idx = static_cast<const re_brace*>(pstate)->index; in skip_until_paren()
|
D | perl_matcher_common.hpp | 621 int index = static_cast<const re_brace*>(pstate)->index; in match_backref() 735 if(maxlen < static_cast<const re_brace*>(pstate)->index) in match_backstep() 737 std::advance(position, -static_cast<const re_brace*>(pstate)->index); in match_backstep() 741 int c = static_cast<const re_brace*>(pstate)->index; in match_backstep() 760 int index = static_cast<const re_brace*>(pstate)->index; in match_assert_backref()
|
D | perl_matcher_non_recursive.hpp | 398 int index = static_cast<const re_brace*>(pstate)->index; in match_startmark() 399 icase = static_cast<const re_brace*>(pstate)->icase; in match_startmark() 507 bool negated = static_cast<const re_brace*>(pstate)->index == -2; in match_startmark() 1020 if(i->idx == static_cast<const re_brace*>(static_cast<const re_jump*>(pstate)->alt.p)->index) in match_recursion() 1042 recursion_stack.back().idx = static_cast<const re_brace*>(pstate)->index; in match_recursion() 1046 push_repeater_count(-(2 + static_cast<const re_brace*>(pstate)->index), &next_count); in match_recursion() 1055 int index = static_cast<const re_brace*>(pstate)->index; in match_endmark() 1056 icase = static_cast<const re_brace*>(pstate)->icase; in match_endmark() 1187 if(static_cast<const re_brace*>(pstate)->index == index) in skip_until_paren() 1215 int idx = static_cast<const re_brace*>(pstate)->index; in skip_until_paren()
|
D | states.hpp | 161 struct re_brace : public re_syntax_base struct
|