Home | History | Annotate | Download | only in cintltst

Lines Matching refs:NFC

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.
1646 UChar NFC[NORM_BUFFER_TEST_LEN];
1694 nfcSize = unorm_normalize(comp, len, UNORM_NFC, 0, t[noCases]->NFC, NORM_BUFFER_TEST_LEN, &status);
1697 if(nfcSize != nfdSize || (uprv_memcmp(t[noCases]->NFC, t[noCases]->NFD, nfcSize * sizeof(UChar)) != 0)
1701 u_strncpy(t[noCases]->NFC, comp, len);
1702 t[noCases]->NFC[len] = 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);
1729 nfcSize = unorm_normalize(comp, len, UNORM_NFC, 0, t[noCases]->NFC, NORM_BUFFER_TEST_LEN, &status);
1732 doTest(coll, comp, t[noCases]->NFC, UCOL_EQUAL);
1758 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
1760 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
1761 log_verbose("Testing NFC\n");
1762 ucol_setText(iter, t[u]->NFC, u_strlen(t[u]->NFC), &status);