Home
last modified time | relevance | path

Searched refs:OP_CBRA (Results 1 – 10 of 10) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_find_bracket.c96 else if (c == OP_CBRA || c == OP_SCBRA || in PRIV()
Dpcre2_study.c113 if (*code == OP_CBRA || *code == OP_CBRAPOS) cc += IMM2_SIZE; in find_minlength()
181 case OP_CBRA: in find_minlength()
890 if (*code == OP_CBRA || *code == OP_SCBRA || in set_start_bits()
1021 case OP_CBRA: in set_start_bits()
Dpcre2_auto_possess.c605 case OP_CBRA: in compare_opcodes()
624 if (*next_code != OP_BRA && *next_code != OP_CBRA in compare_opcodes()
Dpcre2_compile.c910 if (*code == OP_CBRA || *code == OP_CBRAPOS || *code == OP_SCBRA || in find_fixedlength()
947 case OP_CBRA: in find_fixedlength()
1386 (*code == OP_CBRA || *code == OP_CBRAPOS)) in could_be_empty_branch()
1503 c == OP_CBRA || c == OP_CBRAPOS || in could_be_empty_branch()
6064 bravalue = OP_CBRA; in compile_branch()
7649 if (*code == OP_CBRA) in compile_regex()
7959 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_anchored()
8083 else if (op == OP_CBRA || op == OP_CBRAPOS || in is_startline()
8168 int xl = (*code == OP_CBRA || *code == OP_SCBRA || in find_firstassertedcu()
8180 case OP_CBRA: in find_firstassertedcu()
Dpcre2_jit_compile.c681 case OP_CBRA: in next_opcode()
1033 if (*cc != OP_BRA && *cc != OP_CBRA) in detect_fast_forward_skip()
1039 if (*cc == OP_CBRA) in detect_fast_forward_skip()
1062 SLJIT_ASSERT(*cc == OP_BRA || *cc == OP_CBRA); in detect_fast_fail()
1064 if (*cc == OP_CBRA && common->optimized_cbracket[GET2(cc, 1 + LINK_SIZE)] == 0) in detect_fast_fail()
1075 cc += 1 + LINK_SIZE + ((*cc == OP_CBRA) ? IMM2_SIZE : 0); in detect_fast_fail()
1099 if (depth > 0 && (*cc == OP_BRA || *cc == OP_CBRA)) in detect_fast_fail()
1307 …if (repeat_check && (*cc == OP_ONCE || *cc == OP_ONCE_NC || *cc == OP_BRA || *cc == OP_CBRA || *cc… in set_private_data_ptrs()
1368 case OP_CBRA: in set_private_data_ptrs()
1551 case OP_CBRA: in get_framesize()
[all …]
Dpcre2_printint.c373 case OP_CBRA: in pcre2_printint()
Dpcre2_dfa_match.c421 ((*this_start_code == OP_CBRA || *this_start_code == OP_SCBRA || in internal_dfa_match()
520 ((*this_start_code == OP_CBRA || *this_start_code == OP_SCBRA || in internal_dfa_match()
771 case OP_CBRA: in internal_dfa_match()
Dpcre2_internal.h1542 OP_CBRA, /* 134 Start of capturing bracket */ enumerator
Dpcre2_match.c1002 case OP_CBRA: in match()
2022 if (*prev == OP_CBRA || *prev == OP_SCBRA || in match()
/external/pcre/dist2/
DHACKING439 Non-capturing brackets use the opcode OP_BRA, capturing brackets use OP_CBRA. A