Searched refs:OP_ALT (Results 1 – 8 of 8) sorted by relevance
/external/pcre/dist/ |
D | pcre_study.c | 119 if (*cs != OP_ALT) in find_minlength() 141 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 157 case OP_ALT: in find_minlength() 165 if (op != OP_ALT) return length; in find_minlength() 177 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 209 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 400 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 440 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 509 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 977 do tcode += GET(tcode, 1); while (*tcode == OP_ALT); in set_start_bits() [all …]
|
D | pcre_exec.c | 889 (*ecode == OP_ALT || *next == OP_ALT)) in match() 897 while (*ecode == OP_ALT); in match() 901 if (*ecode != OP_ONCE_NC && *ecode != OP_ALT) RRETURN(MATCH_NOMATCH); in match() 906 do ecode += GET(ecode, 1); while (*ecode == OP_ALT); in match() 1002 (*ecode == OP_ALT || *next == OP_ALT)) in match() 1012 if (*ecode != OP_ALT) break; in match() 1070 else if (!md->hasthen && ecode[GET(ecode, 1)] != OP_ALT) in match() 1090 (*ecode == OP_ALT || *next == OP_ALT)) in match() 1101 while (*scode == OP_ALT) scode += GET(scode, 1); in match() 1110 if (*ecode != OP_ALT) break; in match() [all …]
|
D | pcre_dfa_exec.c | 482 while (*end_code == OP_ALT); in internal_dfa_exec() 528 while (*end_code == OP_ALT); in internal_dfa_exec() 545 do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT); in internal_dfa_exec() 565 while (*end_code == OP_ALT); in internal_dfa_exec() 818 case OP_ALT: in internal_dfa_exec() 819 do { code += GET(code, 1); } while (*code == OP_ALT); in internal_dfa_exec() 831 while (*code == OP_ALT); in internal_dfa_exec() 839 while (*code == OP_ALT) in internal_dfa_exec() 851 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_exec() 858 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_exec() [all …]
|
D | pcre_compile.c | 1679 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code() 1769 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength() 1779 case OP_ALT: in find_fixedlength() 1786 if (*cc != OP_ALT) return length; in find_fixedlength() 1798 do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ in find_fixedlength() 1820 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength() 2415 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch() 2450 do endgroup += GET(endgroup, 1); while (*endgroup == OP_ALT); in could_be_empty_branch() 2476 while (*scode == OP_ALT); in could_be_empty_branch() 2488 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch() [all …]
|
D | pcre_jit_compile.c | 547 do cc += GET(cc, 1); while (*cc == OP_ALT); in bracketend() 562 while (*cc == OP_ALT); in no_alternatives() 636 case OP_ALT: in next_opcode() 1996 BOOL has_alternatives = cc[GET(cc, 1)] == OP_ALT; in set_then_offsets() 2015 if (*cc == OP_ALT && has_alternatives) in set_then_offsets() 3333 case OP_ALT: in scan_prefix() 3344 while (*alternative == OP_ALT) in scan_prefix() 6568 if (*ccbegin == OP_ALT) in compile_assert_matchingpath() 6664 if (*cc != OP_ALT) in compile_assert_matchingpath() 7042 has_alternatives = *cc == OP_ALT; in compile_bracket_matchingpath() [all …]
|
D | pcre_printint.c | 407 case OP_ALT: in pcre_printint()
|
D | HACKING | 409 next alternative OP_ALT or, if there aren't any branches, to the matching 410 OP_KET opcode. Each OP_ALT is followed by LINK_SIZE bytes giving the offset to
|
D | pcre_internal.h | 2058 OP_ALT, /* 119 Start of alternation */ enumerator
|