Lines Matching defs:special
1363 =for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1374 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
1375 and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually,
1378 The "special" is a string like "utf8::ToSpecLower", which means the
1388 Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *normal, char *special)
1404 /* The 0xDF is the only special casing Unicode code point below 0x100. */
1405 if (special && (uv1 == 0xDF || uv1 > 0xFF)) {
1406 /* It might be "special" (sometimes, but not always,
1411 if ((hv = get_hv(special, FALSE)) &&
1626 /* This API is wrong for special case conversions since we may need to