Home | History | Annotate | Download | only in i18n

Lines Matching full:tlen

7012         int32_t tLen      = (tColl->flags & UCOL_ITER_HASLEN) ? (int32_t)(tColl->endp - tColl->string) : -1;
7025 tColl->nfd->normalize(UnicodeString((tColl->flags & UCOL_ITER_HASLEN) == 0, tBuf, tLen),
7033 comparison = u_strCompare(sBuf, sLen, tBuf, tLen, TRUE);
7748 int32_t tLen,
7784 return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
7798 return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
7805 if(tLen==-1) { // handling zero terminated strings
7819 if(tIndex==tLen) {
7830 return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
7836 tOrder = ucol_getLatinOneContraction(coll, UCOL_PRIMARY, tOrder, target, &tIndex, tLen);
7841 return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
7874 sLen = sIndex; tLen = tIndex;
7900 if(tIndex==tLen) {
7910 tOrder = ucol_getLatinOneContraction(coll, UCOL_SECONDARY, tOrder, target, &tIndex, tLen);
7936 return ucol_strcollRegular(coll, source, sLen, target, tLen, status);
7939 sIndex = sLen; tIndex = tLen;
8005 if(tIndex==tLen) {
8015 tOrder = ucol_getLatinOneContraction(coll, UCOL_TERTIARY, tOrder, target, &tIndex, tLen);
8141 int32_t tLen,
8174 return ucol_strcollRegularUTF8(coll, source, sLen, target, tLen, status);
8188 return ucol_strcollRegularUTF8(coll, source, sLen, target, tLen, status);
8195 if (tIndex == tLen) {
8202 U8_NEXT_OR_FFFD(target, tIndex, tLen, tChar);
8203 if (tLen < 0 && tChar == 0) {
8205 tLen = tIndex;
8213 return ucol_strcollRegularUTF8(coll, source, sLen, target, tLen, status);
8219 tOrder = ucol_getLatinOneContractionUTF8(coll, UCOL_PRIMARY, tOrder, target, &tIndex, tLen);
8224 return ucol_strcollRegularUTF8(coll, source, sLen, target, tLen, status);
8257 sLen = sIndex; tLen = tIndex;
8285 if(tIndex==tLen) {
8292 U_ASSERT(tLen >= 0);
8293 U8_NEXT_OR_FFFD(target, tIndex, tLen, tChar);
8297 tOrder = ucol_getLatinOneContractionUTF8(coll, UCOL_SECONDARY, tOrder, target, &tIndex, tLen);
8323 return ucol_strcollRegularUTF8(coll, source, sLen, target, tLen, status);
8326 sIndex = sLen; tIndex = tLen;
8396 if(tIndex==tLen) {
8403 U_ASSERT(tLen >= 0);
8404 U8_NEXT_OR_FFFD(target, tIndex, tLen, tChar);
8408 tOrder = ucol_getLatinOneContractionUTF8(coll, UCOL_TERTIARY, tOrder, target, &tIndex, tLen);