Home
last modified time | relevance | path

Searched refs:OP_ALT (Results 1 – 8 of 8) sorted by relevance

/external/pcre/dist/
Dpcre_study.c114 if (*cs != OP_ALT) in find_minlength()
136 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
152 case OP_ALT: in find_minlength()
160 if (op != OP_ALT) return length; in find_minlength()
172 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
204 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength()
395 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength()
420 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength()
476 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength()
935 do tcode += GET(tcode, 1); while (*tcode == OP_ALT); in set_start_bits()
[all …]
Dpcre_exec.c889 (*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 …]
Dpcre_dfa_exec.c482 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 …]
Dpcre_compile.c1660 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code()
1747 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength()
1757 case OP_ALT: in find_fixedlength()
1764 if (*cc != OP_ALT) return length; in find_fixedlength()
1776 do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ in find_fixedlength()
1790 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_fixedlength()
2362 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch()
2397 do endgroup += GET(endgroup, 1); while (*endgroup == OP_ALT); in could_be_empty_branch()
2423 while (*scode == OP_ALT); in could_be_empty_branch()
2435 do code += GET(code, 1); while (*code == OP_ALT); in could_be_empty_branch()
[all …]
Dpcre_jit_compile.c551 do cc += GET(cc, 1); while (*cc == OP_ALT); in bracketend()
566 while (*cc == OP_ALT); in no_alternatives()
640 case OP_ALT: in next_opcode()
1980 BOOL has_alternatives = cc[GET(cc, 1)] == OP_ALT; in set_then_offsets()
1999 if (*cc == OP_ALT && has_alternatives) in set_then_offsets()
3277 case OP_ALT: in scan_prefix()
3288 while (*alternative == OP_ALT) in scan_prefix()
6516 if (*ccbegin == OP_ALT) in compile_assert_matchingpath()
6612 if (*cc != OP_ALT) in compile_assert_matchingpath()
6990 has_alternatives = *cc == OP_ALT; in compile_bracket_matchingpath()
[all …]
Dpcre_printint.c407 case OP_ALT: in pcre_printint()
DHACKING409 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
Dpcre_internal.h2050 OP_ALT, /* 119 Start of alternation */ enumerator