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()
804 if (leftop == OP_PROP || leftop == OP_NOTPROP) in compare_opcodes()
808 else if (rightop == OP_PROP || rightop == OP_NOTPROP) in compare_opcodes()
813 BOOL lisprop = leftop == OP_PROP; in compare_opcodes()
814 BOOL risprop = rightop == OP_PROP; in compare_opcodes()
1030 case OP_PROP: in compare_opcodes()
1216 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV()
1223 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.c310 cc += (cc[1] == OP_PROP || cc[1] == OP_NOTPROP)? 4 : 2; in find_minlength()
329 cc += 2 + IMM2_SIZE + ((cc[1 + IMM2_SIZE] == OP_PROP in find_minlength()
335 case OP_PROP: in find_minlength()
386 if (cc[1] == OP_PROP || cc[1] == OP_NOTPROP) cc += 2; in find_minlength()
393 if (cc[1 + IMM2_SIZE] == OP_PROP in find_minlength()
1037 case OP_PROP: in set_start_bits()
Dpcre2_printint.c281 const char *not = (*code == OP_PROP)? "" : "not "; in print_prop()
479 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) in pcre2_printint()
513 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in pcre2_printint()
629 case OP_PROP: in pcre2_printint()
Dpcre2_dfa_match.c808 case OP_PROP: codevalue += OP_PROP_EXTRA; break; in internal_dfa_match()
1152 case OP_PROP: in internal_dfa_match()
1232 OK = codevalue != OP_PROP; in internal_dfa_match()
1236 if (OK == (codevalue == OP_PROP)) { ADD_NEW(state_offset + 3, 0); } in internal_dfa_match()
1490 OK = codevalue != OP_PROP; in internal_dfa_match()
1494 if (OK == (d == OP_PROP)) in internal_dfa_match()
1731 OK = codevalue != OP_PROP; in internal_dfa_match()
1735 if (OK == (d == OP_PROP)) in internal_dfa_match()
1997 OK = codevalue != OP_PROP; in internal_dfa_match()
2001 if (OK == (d == OP_PROP)) in internal_dfa_match()
Dpcre2_pattern_info.c382 if (cc[-1] == OP_PROP || cc[-1] == OP_NOTPROP) cc += 2; in pcre2_callout_enumerate()
Dpcre2_match.c2338 case OP_PROP: in match()
2364 if ((Fecode[2] != PRIV(ucp_gentype)[prop->chartype]) == (Fop == OP_PROP)) in match()
2369 if ((Fecode[2] != prop->chartype) == (Fop == OP_PROP)) in match()
2374 if ((Fecode[2] != prop->script) == (Fop == OP_PROP)) in match()
2418 { if (Fop == OP_PROP) { RRETURN(MATCH_NOMATCH); } else break; } in match()
2420 { if (Fop == OP_PROP) break; else { RRETURN(MATCH_NOMATCH); } } in match()
2534 if (Lctype == OP_PROP || Lctype == OP_NOTPROP) in match()
Dpcre2_compile.c6966 if (op_previous == OP_PROP || op_previous == OP_NOTPROP) in compile_branch()
7125 ((tempcode[1 + IMM2_SIZE] == OP_PROP in compile_branch()
7343 *code++ = (meta_arg == ESC_p)? OP_PROP : OP_NOTPROP; in compile_branch()
7403 *code++ = OP_PROP; in compile_branch()
8094 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in find_recurse()
8101 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in find_recurse()
Dpcre2_internal.h1320 OP_PROP, /* 16 \p (Unicode property) */ enumerator
Dpcre2_jit_compile.c675 case OP_PROP: in next_opcode()
1630 case OP_PROP: in get_framesize()
4068 case OP_PROP: in scan_prefix()
7455 case OP_PROP: in compile_char1_matchingpath()
10464 case OP_PROP: in compile_matchingpath()
/external/pcre/dist2/
DHACKING541 OP_PROP and OP_NOTPROP are used for positive and negative matches of a
551 three code units: OP_PROP or OP_NOTPROP, and then the desired property type and