Home | History | Annotate | Download | only in cintltst

Lines Matching defs:NFD

1640 The largest normalization form is 18 for NFKC/NFKD, 4 for NFD and 3 for NFC
1641 We're only using NFC/NFD in this test.
1647 UChar NFD[NORM_BUFFER_TEST_LEN];
1695 nfdSize = unorm_normalize(comp, len, UNORM_NFD, 0, t[noCases]->NFD, NORM_BUFFER_TEST_LEN, &status);
1697 if(nfcSize != nfdSize || (uprv_memcmp(t[noCases]->NFC, t[noCases]->NFD, nfcSize * sizeof(UChar)) != 0)
1698 || (len != nfdSize || (uprv_memcmp(comp, t[noCases]->NFD, nfdSize * sizeof(UChar)) != 0))) {
1700 if(len != nfdSize || (uprv_memcmp(comp, t[noCases]->NFD, nfdSize * sizeof(UChar)) != 0)) {
1714 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
1716 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
1730 nfdSize = unorm_normalize(comp, len, UNORM_NFD, 0, t[noCases]->NFD, NORM_BUFFER_TEST_LEN, &status);
1731 doTest(coll, comp, t[noCases]->NFD, UCOL_EQUAL);
1755 iter = ucol_openElements(coll, t[u]->NFD, u_strlen(t[u]->NFD), &status);
1758 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
1760 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
1764 log_verbose("Testing NFD\n");
1765 ucol_setText(iter, t[u]->NFD, u_strlen(t[u]->NFD), &status);