Home | History | Annotate | Download | only in i18n

Lines Matching refs:tLen

7367     int32_t          tLen        = 0;
7385 tLen = (tColl->flags & UCOL_ITER_HASLEN) ? tColl->endp - tColl->string : -1;
7422 if (unorm_quickCheck(tBuf, tLen, UNORM_NFD, status) != UNORM_YES) {
7423 tLen = unorm_decompose(tColl->writableBuffer, (int32_t)tColl->writableBufSize,
7424 tBuf, tLen,
7430 (int32_t *)&tColl->writableBufSize, tLen,
7438 tLen = unorm_decompose(tColl->writableBuffer, (int32_t)tColl->writableBufSize,
7439 tBuf, tLen,
7454 if (sLen == -1 && tLen == -1) {
7460 if (tLen == -1) {
7461 tLen = u_strlen(tBuf);
7463 comparison = u_memcmpCodePointOrder(sBuf, tBuf, uprv_min(sLen, tLen));
7465 comparison = sLen - tLen;
8164 int32_t tLen,
8201 //return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
8216 //return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
8223 if(tLen==-1) { // handling zero terminated strings
8237 if(tIndex==tLen) {
8249 //return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
8255 tOrder = ucol_getLatinOneContraction(coll, UCOL_PRIMARY, tOrder, target, &tIndex, tLen);
8261 //return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
8294 sLen = sIndex; tLen = tIndex;
8320 if(tIndex==tLen) {
8330 tOrder = ucol_getLatinOneContraction(coll, UCOL_SECONDARY, tOrder, target, &tIndex, tLen);
8357 //return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
8360 sIndex = sLen; tIndex = tLen;
8426 if(tIndex==tLen) {
8436 tOrder = ucol_getLatinOneContraction(coll, UCOL_TERTIARY, tOrder, target, &tIndex, tLen);
8465 IInit_collIterate(coll, target, tLen, &tColl);