Searched refs:OP_NCLASS (Results 1 – 9 of 9) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_auto_possess.c | 453 case OP_NCLASS: in get_chr_property_list() 666 || (!utf && (base_list[0] == OP_NCLASS || list[0] == OP_NCLASS)) in compare_opcodes() 671 if (base_list[0] == OP_CLASS || (!utf && base_list[0] == OP_NCLASS)) in compare_opcodes() 689 case OP_NCLASS: in compare_opcodes() 1006 case OP_NCLASS: in compare_opcodes() 1123 else if (c == OP_CLASS || c == OP_NCLASS || c == OP_XCLASS) in PRIV()
|
D | pcre2_printint.c | 640 case OP_NCLASS: in pcre2_printint() 761 fprintf(f, "]%s", (*code == OP_NCLASS)? " (neg)" : ""); in pcre2_printint()
|
D | pcre2_study.c | 390 case OP_NCLASS: in find_minlength() 1417 case OP_NCLASS: in set_start_bits()
|
D | pcre2_jit_compile.c | 660 case OP_NCLASS: in next_opcode() 984 case OP_NCLASS: in is_accelerated_repeat() 1418 case OP_NCLASS: in set_private_data_ptrs() 1637 case OP_NCLASS: in get_framesize() 1882 case OP_NCLASS: in get_private_data_copy_length() 2095 case OP_NCLASS: in copy_private_data() 3612 case OP_NCLASS: in scan_prefix() 6574 case OP_NCLASS: in compile_char1_matchingpath() 6579 bit = (common->utf && is_char7_bitset((const sljit_u8 *)cc, type == OP_NCLASS)) ? 127 : 255; in compile_char1_matchingpath() 6580 read_char_range(common, 0, bit, type == OP_NCLASS); in compile_char1_matchingpath() [all …]
|
D | pcre2_compile.c | 1129 case OP_NCLASS: in find_fixedlength() 1555 case OP_NCLASS: in could_be_empty_branch() 5048 *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; in compile_branch() 5379 else if (*previous == OP_CLASS || *previous == OP_NCLASS || in compile_branch() 5812 case OP_NCLASS: in compile_branch()
|
D | pcre2_dfa_match.c | 2448 case OP_NCLASS: in internal_dfa_match() 2463 isinclass = (c > 255)? (codevalue == OP_NCLASS) : in internal_dfa_match()
|
D | pcre2_internal.h | 1505 OP_NCLASS, /* 111 Same, but the bitmap was created from a negative enumerator
|
D | pcre2_match.c | 2982 case OP_NCLASS: in match()
|
/external/pcre/dist2/ |
D | HACKING | 353 less than 256, OP_CLASS is used for a positive class, and OP_NCLASS for a 359 The reason for having both OP_CLASS and OP_NCLASS is so that, in UTF-8 and 361 handled correctly. For OP_CLASS they do not match, whereas for OP_NCLASS they 387 are allowed (exactly as for OP_NCLASS), but the list of items that follow it
|