Home | History | Annotate | Download | only in src

Lines Matching refs:utf

57    \xed\xa0\x80 = 55296 = 0xd800 (Invalid UTF character)
58 \xed\xb0\x80 = 56320 = 0xdc00 (Invalid UTF character)
92 \xf4\x8f\xbf\xbf = 0x10ffff = 1114111 (highest allowed utf character)
1107 int utf = 0;
1155 utf or ucp may make tests fail, if the pcre_exec result is the SAME, it is
1173 pcre2_config_8(PCRE2_CONFIG_UNICODE, &utf);
1175 pcre2_config_16(PCRE2_CONFIG_UNICODE, &utf);
1177 pcre2_config_32(PCRE2_CONFIG_UNICODE, &utf);
1180 if (!utf)
1183 printf(" in 8 bit mode with UTF-8 %s:\n", utf ? "enabled" : "disabled");
1186 printf(" in 16 bit mode with UTF-16 %s:\n", utf ? "enabled" : "disabled");
1189 printf(" in 32 bit mode with UTF-32 %s:\n", utf ? "enabled" : "disabled");
1220 if (!re8 && (utf || is_ascii))
1247 if (!re16 && (utf || is_ascii))
1274 if (!re32 && (utf || is_ascii))
1613 if (!(current->start_offset & F_NO8) && (utf || is_ascii)) {
1628 if (!(current->start_offset & F_NO16) && (utf || is_ascii)) {
1643 if (!(current->start_offset & F_NO32) && (utf || is_ascii)) {