Home | History | Annotate | Download | only in cintltst

Lines Matching defs:NFD

1628 The largest normalization form is 18 for NFKC/NFKD, 4 for NFD and 3 for NFC
1629 We're only using NFC/NFD in this test.
1635 UChar NFD[NORM_BUFFER_TEST_LEN];
1683 nfdSize = unorm_normalize(comp, len, UNORM_NFD, 0, t[noCases]->NFD, NORM_BUFFER_TEST_LEN, &status);
1685 if(nfcSize != nfdSize || (uprv_memcmp(t[noCases]->NFC, t[noCases]->NFD, nfcSize * sizeof(UChar)) != 0)
1686 || (len != nfdSize || (uprv_memcmp(comp, t[noCases]->NFD, nfdSize * sizeof(UChar)) != 0))) {
1688 if(len != nfdSize || (uprv_memcmp(comp, t[noCases]->NFD, nfdSize * sizeof(UChar)) != 0)) {
1702 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
1704 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
1718 nfdSize = unorm_normalize(comp, len, UNORM_NFD, 0, t[noCases]->NFD, NORM_BUFFER_TEST_LEN, &status);
1719 doTest(coll, comp, t[noCases]->NFD, UCOL_EQUAL);
1743 iter = ucol_openElements(coll, t[u]->NFD, u_strlen(t[u]->NFD), &status);
1746 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
1748 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
1752 log_verbose("Testing NFD\n");
1753 ucol_setText(iter, t[u]->NFD, u_strlen(t[u]->NFD), &status);