Home | History | Annotate | Download | only in telephony

Lines Matching refs:nextPos

430             int nextPos = 0;  // Counts code units.
434 nextPos = pos + Math.min(limit, textLen - pos);
437 nextPos = GsmAlphabet.findGsmSeptetLimitIndex(newMsgBody, pos, limit,
441 nextPos = SmsMessageBase.findNextUnicodePosition(pos, limit, newMsgBody);
443 if ((nextPos <= pos) || (nextPos > textLen)) {
444 Rlog.e(LOG_TAG, "fragmentText failed (" + pos + " >= " + nextPos + " or " +
445 nextPos + " >= " + textLen + ")");
448 result.add(newMsgBody.substring(pos, nextPos));
449 pos = nextPos;