Lines Matching refs:negate_class
2347 BOOL negate_class; in parse_regex() local
3058 negate_class = FALSE; in parse_regex()
3074 else if (!negate_class && c == CHAR_CIRCUMFLEX_ACCENT) in parse_regex()
3075 negate_class = TRUE; in parse_regex()
3085 *parsed_pattern++ = negate_class? META_CLASS_EMPTY_NOT : META_CLASS_EMPTY; in parse_regex()
3091 *parsed_pattern++ = negate_class? META_CLASS_NOT : META_CLASS; in parse_regex()
4998 BOOL negate_class; in compile_branch() local
5163 negate_class = meta == META_CLASS_NOT; in compile_branch()
5633 should_flip_negation && !negate_class && (options & PCRE2_UCP) == 0)) in compile_branch()
5655 *code = negate_class? XCL_NOT:0; in compile_branch()
5666 if (negate_class && !xclass_has_prop) in compile_branch()
5686 *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; in compile_branch()
5689 if (negate_class) in compile_branch()