Searched refs:nextIndex (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaConnection.java915 int nextIndex = findNextPCharOrNonPOrNonWCharIndex(phoneNumber, currIndex);
917 if (nextIndex < length) {
918 char pC = findPOrWCharToAppend(phoneNumber, currIndex, nextIndex);
923 if (nextIndex > (currIndex + 1)) {
924 currIndex = nextIndex - 1;
926 } else if (nextIndex == length) {
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIntRangeManager.java448 for (int nextIndex = crIndex + 1; nextIndex < crLength; nextIndex++) {
449 ClientRange nextCr = clients.get(nextIndex);
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java584 int nextIndex = mOldestIndex + index;
585 if (nextIndex >= mMaxSize) {
586 nextIndex -= mMaxSize;
588 if (nextIndex >= size()) {
591 return mMessages.get(nextIndex);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java543 int nextIndex = count;
549 nextIndex = mSectionIndexer.getPositionForSection(section + 1);
553 if (nextIndex == index) {
577 mSectionIndexer.getPositionForSection(nextNextSection) == nextIndex) {
589 index = prevIndex + (int) ((nextIndex - prevIndex) * (position - fPrev)
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java940 int nextIndex = host.indexOf(PERIOD);
942 while (nextIndex < lastIndex) {
943 startIndex = nextIndex + 1;
944 nextIndex = host.indexOf(PERIOD, startIndex);
/frameworks/base/libs/rs/
H A DrsFont.cpp182 size_t nextIndex = 0; local
186 int32_t utfChar = utf32_from_utf8_at(text, len, index, &nextIndex);
194 index = nextIndex;

Completed in 177 milliseconds