Home | History | Annotate | Download | only in intltest

Lines Matching refs:normalize

322         Normalizer::normalize(a, UNORM_NFKD, 0, b, status);
323 Normalizer::normalize(b, UNORM_NFC, 0, c, status);
362 Normalizer::normalize(a, UNORM_NFKC, 0, b, status);
364 dataerrln("Error calling normalize UNORM_NFKC: %s", u_errorName(status));
375 Normalizer::normalize(b, UNORM_NFD, 0, a, status);
377 dataerrln("Error calling normalize UNORM_NFD: %s", u_errorName(status));
545 Normalizer::normalize(input, mode, options, output, status);
1455 UnicodeString result=customNorm2->normalize(input, errorCode);
1457 errln("custom compose Normalizer2 did not normalize input %d as expected", i);
1487 UnicodeString result=customNorm2->normalize(input, errorCode);
1489 errln("custom FCC Normalizer2 did not normalize input %d as expected", i);
1651 UnicodeString result = n2->normalize(sh, errorCode);
1657 result = n2->normalize(s, errorCode);
1658 assertEquals("normalize string with soft hyphens", u"a\u0323\u0308", result);
1675 UnicodeString result = n2->normalize(s, errorCode);
1676 assertEquals("normalize string with soft hyphens", u"\u00ADa\u0323\u0308", result);
1709 UnicodeString result = nfkc_cf->normalize(src, errorCode);
1710 assertSuccess("normalize", errorCode.get());
1711 assertEquals("normalize", expected, result);
1741 UnicodeString result = nfkc->normalize(s, errorCode);
1742 assertSuccess("normalize(LV+11A7)", errorCode.get());
1743 assertEquals("normalize(LV+11A7)", expected, result);
1768 UnicodeString result = nfkc->normalize(s, errorCode);