Lines Matching full:decomp
1624 const UChar *decomp;
1632 decomp = ((enumStruct *)context)->nfcImpl->
1634 //if((noOfDec = unorm_normalize(comp, len, UNORM_NFD, 0, decomp, 256, status)) > 1
1635 //|| (noOfDec == 1 && *decomp != (UChar)u32))
1636 if(decomp != NULL)
1640 if(ucol_strcoll(tempColl, comp, len, decomp, noOfDec) != UCOL_EQUAL) {
1646 U16_NEXT(decomp, i, noOfDec, c);
1658 ucol_setText(iter, decomp, noOfDec, status);
1669 el.cPoints = (UChar *)decomp;
1682 ucol_setText(colEl, decomp, noOfDec, status);
1747 UChar decomp[256], comp[256];
1750 decLen = unorm_normalize(data, len, UNORM_NFD, 0, decomp, 256, status);
1752 decomp[decLen] = comp[compLen] = 0;
1754 el->cPoints = decomp;
1767 ucol_setText(colEl, decomp, decLen, status);
1808 uprv_memcpy(newDecomp, c->decomp, sizeof(UChar)*(c->decompLen));
1863 UChar decomp[256];
1877 c.decomp = decomp;
1887 decomp[0]=baseCh;
1889 decomp[1] = cmLookup->cPoints[i];
1890 decomp[2]=0;
1892 len = unorm_normalize(decomp, decompLen, UNORM_NFC, 0, comp, 256, status);
1898 index[unorm_getFCD16(fcdTrieIndex, decomp[1]) & 0xff];
1902 decomp[decompLen] = el->cPoints[decompLen];
1903 if (decomp[decompLen]==cMark) {
1908 decomp[replacedPos]=cmLookup->cPoints[i];
1910 decomp[decompLen] = 0;
1911 len = unorm_normalize(decomp, decompLen, UNORM_NFC, 0, comp, 256, status);
1912 comp[len++] = decomp[decompLen++] = cMark;
1913 comp[len] = decomp[decompLen] = 0;
1914 element.cPoints = decomp;
1927 ucol_setText(colEl, decomp, decompLen, status);