Searched refs:OP_NCLASS (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist/ |
D | pcre_byte_order.c | 274 case OP_NCLASS: in pcre_pattern_to_host_byte_order()
|
D | pcre_printint.c | 641 case OP_NCLASS: in pcre_printint() 763 fprintf(f, "]%s", (*code == OP_NCLASS)? " (neg)" : ""); in pcre_printint()
|
D | pcre_compile.c | 1926 case OP_NCLASS: in find_fixedlength() 2554 case OP_NCLASS: in could_be_empty_branch() 3060 case OP_NCLASS: in get_chr_property_list() 3266 || (!utf && (base_list[0] == OP_NCLASS || list[0] == OP_NCLASS)) in compare_opcodes() 3271 if (base_list[0] == OP_CLASS || (!utf && base_list[0] == OP_NCLASS)) in compare_opcodes() 3289 case OP_NCLASS: in compare_opcodes() 3605 case OP_NCLASS: in compare_opcodes() 3726 else if (c == OP_CLASS || c == OP_NCLASS || c == OP_XCLASS) in auto_possessify() 5583 *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; in compile_branch() 5934 else if (*previous == OP_CLASS || *previous == OP_NCLASS || in compile_branch() [all …]
|
D | pcre_study.c | 333 case OP_NCLASS: in find_minlength() 1326 case OP_NCLASS: in set_start_bits()
|
D | HACKING | 323 less than 256, OP_CLASS is used for a positive class, and OP_NCLASS for a 329 The reason for having both OP_CLASS and OP_NCLASS is so that, in UTF-8/16/32 331 For OP_CLASS they do not match, whereas for OP_NCLASS they do.
|
D | pcre_jit_compile.c | 629 case OP_NCLASS: in next_opcode() 1188 case OP_NCLASS: in set_private_data_ptrs() 1407 case OP_NCLASS: in get_framesize() 1649 case OP_NCLASS: in get_private_data_copy_length() 1862 case OP_NCLASS: in copy_private_data() 3365 case OP_NCLASS: in scan_prefix() 5776 case OP_NCLASS: in compile_char1_matchingpath() 5780 bit = (common->utf && is_char7_bitset((const pcre_uint8 *)cc, type == OP_NCLASS)) ? 127 : 255; in compile_char1_matchingpath() 5781 read_char_range(common, 0, bit, type == OP_NCLASS); in compile_char1_matchingpath() 5783 read_char_range(common, 0, 255, type == OP_NCLASS); in compile_char1_matchingpath() [all …]
|
D | pcre_dfa_exec.c | 2534 case OP_NCLASS: in internal_dfa_exec() 2549 isinclass = (c > 255)? (codevalue == OP_NCLASS) : in internal_dfa_exec()
|
D | pcre_internal.h | 2046 OP_NCLASS, /* 111 Same, but the bitmap was created from a negative enumerator
|
D | pcretest.c | 2637 case OP_NCLASS: in regexflip8_or_16() 2742 case OP_NCLASS: in regexflip_32()
|
D | pcre_exec.c | 2875 case OP_NCLASS: in match()
|