Home
last modified time | relevance | path

Searched refs:OP_PROP (Results 1 – 11 of 11) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_auto_possess.c418 case OP_PROP: in get_chr_property_list()
449 list[0] = (c == OP_PROP) ? OP_CHAR : OP_NOT; in get_chr_property_list()
772 if (leftop == OP_PROP || leftop == OP_NOTPROP) in compare_opcodes()
776 else if (rightop == OP_PROP || rightop == OP_NOTPROP) in compare_opcodes()
781 BOOL lisprop = leftop == OP_PROP; in compare_opcodes()
782 BOOL risprop = rightop == OP_PROP; in compare_opcodes()
998 case OP_PROP: in compare_opcodes()
1184 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV()
1191 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV()
Dpcre2_find_bracket.c122 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV()
129 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV()
Dpcre2_study.c299 cc += (cc[1] == OP_PROP || cc[1] == OP_NOTPROP)? 4 : 2; in find_minlength()
318 cc += 2 + IMM2_SIZE + ((cc[1 + IMM2_SIZE] == OP_PROP in find_minlength()
324 case OP_PROP: in find_minlength()
375 if (cc[1] == OP_PROP || cc[1] == OP_NOTPROP) cc += 2; in find_minlength()
382 if (cc[1 + IMM2_SIZE] == OP_PROP in find_minlength()
987 case OP_PROP: in set_start_bits()
Dpcre2_printint.c281 const char *not = (*code == OP_PROP)? "" : "not "; in print_prop()
480 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) in pcre2_printint()
514 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in pcre2_printint()
630 case OP_PROP: in pcre2_printint()
Dpcre2_dfa_match.c667 case OP_PROP: codevalue += OP_PROP_EXTRA; break; in internal_dfa_match()
1011 case OP_PROP: in internal_dfa_match()
1091 OK = codevalue != OP_PROP; in internal_dfa_match()
1095 if (OK == (codevalue == OP_PROP)) { ADD_NEW(state_offset + 3, 0); } in internal_dfa_match()
1349 OK = codevalue != OP_PROP; in internal_dfa_match()
1353 if (OK == (d == OP_PROP)) in internal_dfa_match()
1601 OK = codevalue != OP_PROP; in internal_dfa_match()
1605 if (OK == (d == OP_PROP)) in internal_dfa_match()
1878 OK = codevalue != OP_PROP; in internal_dfa_match()
1882 if (OK == (d == OP_PROP)) in internal_dfa_match()
Dpcre2_pattern_info.c361 if (cc[-1] == OP_PROP || cc[-1] == OP_NOTPROP) cc += 2; in pcre2_callout_enumerate()
Dpcre2_compile.c1092 if (cc[1 + IMM2_SIZE] == OP_PROP || cc[1 + IMM2_SIZE] == OP_NOTPROP) in find_fixedlength()
1099 case OP_PROP: in find_fixedlength()
1592 case OP_PROP: in could_be_empty_branch()
1649 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in could_be_empty_branch()
1657 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in could_be_empty_branch()
2512 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in find_recurse()
2519 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in find_recurse()
5244 if (c == OP_PROP || c == OP_NOTPROP) in compile_branch()
5787 ((tempcode[1 + IMM2_SIZE] == OP_PROP in compile_branch()
7370 *code++ = ((escape == ESC_p) != negated)? OP_PROP : OP_NOTPROP; in compile_branch()
[all …]
Dpcre2_match.c2626 case OP_PROP: in match()
2652 if ((ecode[2] != PRIV(ucp_gentype)[prop->chartype]) == (op == OP_PROP)) in match()
2657 if ((ecode[2] != prop->chartype) == (op == OP_PROP)) in match()
2662 if ((ecode[2] != prop->script) == (op == OP_PROP)) in match()
2706 { if (op == OP_PROP) { RRETURN(MATCH_NOMATCH); } else break; } in match()
2708 { if (op == OP_PROP) break; else { RRETURN(MATCH_NOMATCH); } } in match()
4233 if (ctype == OP_PROP || ctype == OP_NOTPROP) in match()
Dpcre2_internal.h1366 OP_PROP, /* 16 \p (Unicode property) */ enumerator
Dpcre2_jit_compile.c634 case OP_PROP: in next_opcode()
1588 case OP_PROP: in get_framesize()
3674 case OP_PROP: in scan_prefix()
6367 case OP_PROP: in compile_char1_matchingpath()
9370 case OP_PROP: in compile_matchingpath()
/external/pcre/dist2/
DHACKING328 OP_PROP and OP_NOTPROP are used for positive and negative matches of a
337 three code units: OP_PROP or OP_NOTPROP, and then the desired property type and