Home | History | Annotate | Download | only in cintltst

Lines Matching defs:NFC

552 The largest normalization form is 18 for NFKC/NFKD, 4 for NFD and 3 for NFC
553 We're only using NFC/NFD in this test.
558 UChar NFC[NORM_BUFFER_TEST_LEN];
606 nfcSize = unorm_normalize(comp, len, UNORM_NFC, 0, t[noCases]->NFC, NORM_BUFFER_TEST_LEN, &status);
609 if(nfcSize != nfdSize || (uprv_memcmp(t[noCases]->NFC, t[noCases]->NFD, nfcSize * sizeof(UChar)) != 0)
613 u_strncpy(t[noCases]->NFC, comp, len);
614 t[noCases]->NFC[len] = 0;
626 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
628 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
641 NFC, NORM_BUFFER_TEST_LEN, &status);
644 doTest(coll, comp, t[noCases]->NFC, UCOL_EQUAL);
670 if(!ucol_equal(coll, t[u]->NFC, -1, t[u]->NFD, -1)) {
672 doTest(coll, t[u]->NFC, t[u]->NFD, UCOL_EQUAL);
673 log_verbose("Testing NFC\n");
674 ucol_setText(iter, t[u]->NFC, u_strlen(t[u]->NFC), &status);