Lines Matching refs:utf
62 \xed\xa0\x80 = 55296 = 0xd800 (Invalid UTF character)
63 \xed\xb0\x80 = 56320 = 0xdc00 (Invalid UTF character)
90 \xf4\x8f\xbf\xbf = 0x10ffff = 1114111 (highest allowed utf character)
1127 int utf = 0, ucp = 0;
1160 utf or ucp may make tests fail, if the pcre_exec result is the SAME, it is
1175 pcre_config(PCRE_CONFIG_UTF8, &utf);
1178 pcre16_config(PCRE_CONFIG_UTF16, &utf);
1181 pcre32_config(PCRE_CONFIG_UTF32, &utf);
1185 if (!utf)
1190 printf(" in 8 bit mode with UTF-8 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1193 printf(" in 16 bit mode with UTF-16 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1196 printf(" in 32 bit mode with UTF-32 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1236 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO8))
1267 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO16))
1298 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO32))
1606 if (!(current->start_offset & F_NO8) && ((utf && ucp) || is_ascii)) {
1621 if (!(current->start_offset & F_NO16) && ((utf && ucp) || is_ascii)) {
1636 if (!(current->start_offset & F_NO32) && ((utf && ucp) || is_ascii)) {