Home | History | Annotate | Download | only in telephony

Lines Matching refs:nextPos

363         int nextPos = Math.min(currentPosition + byteLimit / 2, msgBody.length());
367 if (nextPos < msgBody.length()) {
370 if (!breakIterator.isBoundary(nextPos)) {
371 int breakPos = breakIterator.preceding(nextPos);
372 while (breakPos + 4 <= nextPos
381 nextPos = breakPos;
382 } else if (Character.isHighSurrogate(msgBody.charAt(nextPos - 1))) {
384 nextPos -= 1;
388 return nextPos;
416 int nextPos = findNextUnicodePosition(pos, maxUserDataBytesWithHeader,
418 if (nextPos == msgBody.length()) {
422 pos = nextPos;