Searched refs:OP_ALT (Results 1 – 9 of 9) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_study.c | 159 if (*cs != OP_ALT) in find_minlength() 190 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 212 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 230 case OP_ALT: in find_minlength() 238 if (op != OP_ALT || length == 0) return length; in find_minlength() 253 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 290 do cc += GET(cc, 1); while (*cc == OP_ALT); in find_minlength() 498 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 559 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() 651 do ce += GET(ce, 1); while (*ce == OP_ALT); in find_minlength() [all …]
|
D | pcre2_dfa_match.c | 596 while (*end_code == OP_ALT); in internal_dfa_match() 645 while (*end_code == OP_ALT); in internal_dfa_match() 662 do { end_code += GET(end_code, 1); } while (*end_code == OP_ALT); in internal_dfa_match() 682 while (*end_code == OP_ALT); in internal_dfa_match() 907 case OP_ALT: in internal_dfa_match() 908 do { code += GET(code, 1); } while (*code == OP_ALT); in internal_dfa_match() 920 while (*code == OP_ALT); in internal_dfa_match() 928 while (*code == OP_ALT) in internal_dfa_match() 940 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match() 947 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match() [all …]
|
D | pcre2_match.c | 5135 do Lnext_ecode += GET(Lnext_ecode, 1); while (*Lnext_ecode == OP_ALT); in match() 5141 do Lnext_ecode += GET(Lnext_ecode, 1); while (*Lnext_ecode == OP_ALT); in match() 5151 do Fecode += GET(Fecode,1); while (*Fecode == OP_ALT); in match() 5204 do Fecode += GET(Fecode, 1); while (*Fecode == OP_ALT); in match() 5218 (*Fecode == OP_ALT || *next_ecode == OP_ALT)) in match() 5224 if (*Fecode != OP_ALT) break; in match() 5266 if (*Lnext_branch != OP_ALT) break; in match() 5312 (*Fecode == OP_ALT || *next_ecode == OP_ALT)) in match() 5317 if (*Fecode != OP_ALT) RRETURN(MATCH_NOMATCH); in match() 5383 (*Lstart_branch == OP_ALT || *next_ecode == OP_ALT)) in match() [all …]
|
D | pcre2_auto_possess.c | 584 if (c == OP_ALT) in compare_opcodes() 586 do code += GET(code, 1); while (*code == OP_ALT); in compare_opcodes() 673 while (*next_code == OP_ALT) in compare_opcodes() 691 do next_code += GET(next_code, 1); while (*next_code == OP_ALT); in compare_opcodes()
|
D | pcre2_compile.c | 4859 do code += GET(code, 1); while (*code == OP_ALT); in first_significant_code() 7192 previous[GET(previous, 1)] != OP_ALT) in compile_branch() 7447 if (*bracode == OP_COND && bracode[GET(bracode,1)] != OP_ALT) in compile_branch() 8212 if (*last_branch != OP_ALT) in compile_regex() 8336 *code = OP_ALT; in compile_regex() 8434 if (scode[GET(scode,1)] != OP_ALT) return FALSE; in is_anchored() 8469 while (*code == OP_ALT); /* Loop for each alternative */ in is_anchored() 8534 do scode += GET(scode, 1); while (*scode == OP_ALT); in is_startline() 8602 while (*code == OP_ALT); /* Loop for each alternative */ in is_startline() 8857 while (*code == OP_ALT); in find_firstassertedcu()
|
D | pcre2_jit_compile.c | 840 do cc += GET(cc, 1); while (*cc == OP_ALT); in bracketend() 855 while (*cc == OP_ALT); in no_alternatives() 924 case OP_ALT: in next_opcode() 1260 if (*next_alt == OP_ALT) in detect_early_fail() 1568 if (*cc != OP_ALT && *cc != OP_KET) in detect_early_fail() 1576 while (*cc == OP_ALT); in detect_early_fail() 3040 BOOL has_alternatives = cc[GET(cc, 1)] == OP_ALT; in set_then_offsets() 3059 if (*cc == OP_ALT && has_alternatives) in set_then_offsets() 5545 case OP_ALT: in scan_prefix() 5555 while (*alternative == OP_ALT) in scan_prefix() [all …]
|
D | pcre2_printint.c | 420 case OP_ALT: in pcre2_printint()
|
D | pcre2_internal.h | 1541 OP_ALT, /* 120 Start of alternation */ enumerator
|
/third_party/pcre2/pcre2/ |
D | HACKING | 660 next alternative OP_ALT or, if there aren't any branches, to the terminating 661 opcode. Each OP_ALT is followed by a LINK_SIZE value giving the offset to the
|