Lines Matching refs:utf
118 print_char(FILE *f, pcre_uchar *ptr, BOOL utf)
124 (void)utf; /* Avoid compiler warning */
134 if (!utf || (c & 0xc0) != 0xc0)
149 /* This is a check for malformed UTF-8; it should only occur if the sanity
170 if (!utf || (c & 0xfc00) != 0xd800)
179 /* This is a check for malformed UTF-16; it should only occur if the sanity
196 if (!utf || (c & 0xfffff800u) != 0xd800u)
205 /* This is a check for malformed UTF-32; it should only occur if the sanity
218 * Print uchar string (regardless of utf) *
259 characters. This is used only when UCP support is available and UTF mode is
314 BOOL utf;
334 utf = (options & PCRE_UTF8) != 0;
374 code += 1 + print_char(f, code, utf);
385 code += 1 + print_char(f, code, utf);
502 else extra = print_char(f, code+1, utf);
517 extra = print_char(f, code + 1 + IMM2_SIZE, utf);
547 extra = print_char(f, code + 1, utf);
573 extra = print_char(f, code + 1, utf);
589 extra = print_char(f, code + 1 + IMM2_SIZE, utf);
636 /* OP_XCLASS cannot occur in 8-bit, non-UTF mode. However, there's no harm
750 ccode += 1 + print_char(f, ccode, utf);
754 ccode += 1 + print_char(f, ccode, utf);
761 /* Indicate a non-UTF class which was created by negation */