Lines Matching refs:nextIndex
576 int32_t nextIndex = i; in toUpper() local
578 U8_NEXT(src, nextIndex, srcLength, c); in toUpper()
606 int32_t nextNextIndex = nextIndex; in toUpper()
607 while (nextIndex < srcLength) { in toUpper()
616 nextIndex = nextNextIndex; in toUpper()
630 !isFollowedByCasedLetter(src, nextIndex, srcLength)) { in toUpper()
633 if (i == nextIndex) { in toUpper()
655 change = (i + 2) > nextIndex || in toUpper()
660 change |= (i2 + 2) > nextIndex || in toUpper()
666 change |= (i2 + 2) > nextIndex || in toUpper()
671 int32_t oldLength = nextIndex - i; in toUpper()
703 if (!appendResult(nextIndex - i, c, s, sink, options, edits, errorCode)) { in toUpper()
708 if (!ByteSinkUtil::appendUnchanged(src+i, nextIndex-i, in toUpper()
713 i = nextIndex; in toUpper()