Home | History | Annotate | Download | only in i18n

Lines Matching full:endp

125         (s)->endp = (UChar *)sourceString+sourceLen;
129 (s)->endp = NULL;
183 return s == NULL || s->pos == s->endp;
363 return (s->pos == s->endp);
382 return s->fcdPosition == s->endp;
1376 const UChar *endP = collationSource->fcdPosition; /* End of region to normalize+1 */
1378 collationSource->nfd->normalize(UnicodeString(FALSE, srcP, (int32_t)(endP - srcP)),
1448 const UChar *srcP, *endP;
1457 endP = collationSource->endp;
1459 endP = NULL;
1463 fcd = g_nfcImpl->nextFCD16(srcP, endP);
1470 while (endP == NULL || srcP != endP)
1474 fcd = g_nfcImpl->nextFCD16(srcP, endP);
1544 if (collationSource->pos >= collationSource->endp) {
1619 if ((collationSource->flags & UCOL_ITER_HASLEN) && collationSource->pos >= collationSource->endp) {
2341 if (data->pos + 1 == data->endp) {
2364 data->fcdPosition + 1 == data->endp) {
2503 if (((source->flags & UCOL_ITER_HASLEN) && source->pos >= source->endp)
2508 source->fcdPosition == source->endp ||
3345 } else if((((source->flags & UCOL_ITER_HASLEN) == 0 ) || (source->pos<source->endp)) &&
6533 if(s.pos != s.endp || CE == UCOL_NO_MORE_CES) {
7010 int32_t sLen = (sColl->flags & UCOL_ITER_HASLEN) ? (int32_t)(sColl->endp - sColl->string) : -1;
7012 int32_t tLen = (tColl->flags & UCOL_ITER_HASLEN) ? (int32_t)(tColl->endp - tColl->string) : -1;
7052 uint32_t *endp;
7061 (b)->endp = (b)->buf + UCOL_CEBUF_SIZE;
7083 b->endp = b->buf + newSize;
7090 if (b->pos == b->endp) {
7131 sourceLength = (sColl->flags&UCOL_ITER_HASLEN)?(int32_t)(sColl->endp-sColl->string):-1;
7132 targetLength = (tColl->flags&UCOL_ITER_HASLEN)?(int32_t)(tColl->endp-tColl->string):-1;