Home | History | Annotate | Download | only in dist

Lines Matching refs:ucp

1136 	int utf = 0, ucp = 0;
1169 utf or ucp may make tests fail, if the pcre_exec result is the SAME, it is
1185 pcre_config(PCRE_CONFIG_UNICODE_PROPERTIES, &ucp);
1188 pcre16_config(PCRE_CONFIG_UNICODE_PROPERTIES, &ucp);
1191 pcre32_config(PCRE_CONFIG_UNICODE_PROPERTIES, &ucp);
1196 if (!ucp)
1199 printf(" in 8 bit mode with UTF-8 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1202 printf(" in 16 bit mode with UTF-16 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1205 printf(" in 32 bit mode with UTF-32 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1245 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO8))
1276 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO16))
1307 } else if (((utf && ucp) || is_ascii) && !(current->start_offset & F_NO32))
1615 if (!(current->start_offset & F_NO8) && ((utf && ucp) || is_ascii)) {
1630 if (!(current->start_offset & F_NO16) && ((utf && ucp) || is_ascii)) {
1645 if (!(current->start_offset & F_NO32) && ((utf && ucp) || is_ascii)) {