Searched refs:OP_ALT (Results 1 – 9 of 9) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_study.c | 152 if (*cs != OP_ALT) in find_minlength() 182 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() 220 case OP_ALT: in find_minlength() 228 if (op != OP_ALT) return length; in find_minlength() 240 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 277 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 483 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 539 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 629 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() [all …]
|
D | pcre2_dfa_match.c | 584 while (*end_code == OP_ALT); in internal_dfa_match() 633 while (*end_code == OP_ALT); in internal_dfa_match() 650 do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT); in internal_dfa_match() 670 while (*end_code == OP_ALT); in internal_dfa_match() 895 case OP_ALT: in internal_dfa_match() 896 do { code += GET(code, 1); } while (*code == OP_ALT); in internal_dfa_match() 908 while (*code == OP_ALT); in internal_dfa_match() 916 while (*code == OP_ALT) in internal_dfa_match() 928 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match() 935 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match() [all …]
|
D | pcre2_match.c | 4853 do Lnext_ecode += GET(Lnext_ecode, 1); while (*Lnext_ecode == OP_ALT); in match() 4859 do Lnext_ecode += GET(Lnext_ecode, 1); while (*Lnext_ecode == OP_ALT); in match() 4869 do Fecode += GET(Fecode,1); while (*Fecode == OP_ALT); in match() 4922 do Fecode += GET(Fecode, 1); while (*Fecode == OP_ALT); in match() 4936 (*Fecode == OP_ALT || *next_ecode == OP_ALT)) in match() 4942 if (*Fecode != OP_ALT) break; in match() 4984 if (*Lnext_branch != OP_ALT) break; in match() 5029 (*Fecode == OP_ALT || *next_ecode == OP_ALT)) in match() 5034 if (*Fecode != OP_ALT) RRETURN(MATCH_NOMATCH); in match() 5100 (*Lstart_branch == OP_ALT || *next_ecode == OP_ALT)) in match() [all …]
|
D | pcre2_auto_possess.c | 563 if (c == OP_ALT) in compare_opcodes() 565 do code += GET(code, 1); while (*code == OP_ALT); in compare_opcodes() 637 while (*next_code == OP_ALT) in compare_opcodes() 655 do next_code += GET(next_code, 1); while (*next_code == OP_ALT); in compare_opcodes()
|
D | pcre2_compile.c | 4389 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code() 6648 previous[GET(previous, 1)] != OP_ALT) in compile_branch() 6898 if (*bracode == OP_COND && bracode[GET(bracode,1)] != OP_ALT) in compile_branch() 7632 if (*last_branch != OP_ALT) in compile_regex() 7773 *code = OP_ALT; in compile_regex() 7871 if (scode[GET(scode,1)] != OP_ALT) return FALSE; in is_anchored() 7906 while (*code == OP_ALT); /* Loop for each alternative */ in is_anchored() 7971 do scode += GET(scode, 1); while (*scode == OP_ALT); in is_startline() 8039 while (*code == OP_ALT); /* Loop for each alternative */ in is_startline() 8279 while (*code == OP_ALT); in find_firstassertedcu()
|
D | pcre2_jit_compile.c | 624 do cc += GET(cc, 1); while (*cc == OP_ALT); in bracketend() 639 while (*cc == OP_ALT); in no_alternatives() 708 case OP_ALT: in next_opcode() 1160 while (*cc == OP_ALT); in detect_fast_fail() 2541 BOOL has_alternatives = cc[GET(cc, 1)] == OP_ALT; in set_then_offsets() 2560 if (*cc == OP_ALT && has_alternatives) in set_then_offsets() 3975 case OP_ALT: in scan_prefix() 3985 while (*alternative == OP_ALT) in scan_prefix() 8353 case OP_ALT: in assert_needs_str_ptr_saving() 8493 if (*ccbegin == OP_ALT && extrasize > 0) in compile_assert_matchingpath() [all …]
|
D | pcre2_printint.c | 389 case OP_ALT: in pcre2_printint()
|
D | pcre2_internal.h | 1473 OP_ALT, /* 120 Start of alternation */ enumerator
|
/external/pcre/dist2/ |
D | HACKING | 658 next alternative OP_ALT or, if there aren't any branches, to the terminating 659 opcode. Each OP_ALT is followed by a LINK_SIZE value giving the offset to the
|