HomeSort by relevance Sort by last modified time
    Searched refs:nextIndex (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/proguard/src/proguard/util/
ListUtil.java 74 int nextIndex;
80 nextIndex = string.indexOf('\'', index + 1);
81 if (nextIndex < 0)
83 nextIndex = string.length();
86 list.add(string.substring(index + 1, nextIndex));
91 nextIndex = string.indexOf(',', index);
92 if (nextIndex < 0)
94 nextIndex = string.length();
97 String substring = string.substring(index, nextIndex).trim();
104 index = nextIndex + 1
    [all...]
  /external/guava/src/com/google/common/collect/
ForwardingListIterator.java 47 public int nextIndex() {
48 return delegate().nextIndex();
  /libcore/luni/src/main/java/java/util/
ListIterator.java 78 public int nextIndex();
AbstractSequentialList.java 45 int next = it.nextIndex();
49 return next != it.nextIndex();
AbstractList.java 122 public int nextIndex() {
197 return iterator.nextIndex() < end;
205 if (iterator.nextIndex() < end) {
211 public int nextIndex() {
212 return iterator.nextIndex() - start;
593 return it.nextIndex();
599 return it.nextIndex();
  /frameworks/base/core/java/com/android/internal/util/
ProcessedMessages.java 166 int nextIndex = mOldestIndex + index;
167 if (nextIndex >= mMaxSize) {
168 nextIndex -= mMaxSize;
170 if (nextIndex >= size()) {
173 return mMessages.get(nextIndex);
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 150 for (int nextIndex = currIndex + 1;
151 nextIndex < serverCertificates.length;
152 ++nextIndex) {
154 serverCertificates[nextIndex].getSubjectDN())) {
157 if (nextIndex != currIndex + 1) {
158 X509Certificate tempCertificate = serverCertificates[nextIndex];
159 serverCertificates[nextIndex] = serverCertificates[currIndex + 1];
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 91 int nextIndex = i + 1;
95 assertEquals(nextIndex, dateSorter.getIndex(boundary));
96 assertEquals(nextIndex, dateSorter.getIndex(boundary-1));
  /external/icu4c/common/
normlzr.cpp 34 currentIndex(0), nextIndex(0),
43 currentIndex(0), nextIndex(0),
52 currentIndex(0), nextIndex(0),
61 currentIndex(copy.currentIndex), nextIndex(copy.nextIndex),
101 return text->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
113 nextIndex==that.nextIndex;
288 currentIndex=nextIndex=text->setToStart();
295 currentIndex=nextIndex=text->getIndex()
    [all...]
  /external/proguard/src/proguard/
OutputWriter.java 115 int nextIndex = index + 1;
116 if (nextIndex == programJars.size() ||
117 !programJars.get(nextIndex).isOutput())
124 nextIndex);
127 firstInputIndex = nextIndex;
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 699 private int nextIndex;
718 nextIndex = -1;
720 nextIndex = takeIndex;
731 return nextIndex >= 0;
735 * Checks whether nextIndex is valid; if so setting nextItem.
739 if (nextIndex == putIndex) {
740 nextIndex = -1;
743 nextItem = items[nextIndex];
745 nextIndex = -1;
753 if (nextIndex < 0
    [all...]
  /external/chromium/third_party/icu/source/common/
normlzr.cpp 32 currentIndex(0), nextIndex(0),
40 currentIndex(0), nextIndex(0),
48 currentIndex(0), nextIndex(0),
56 currentIndex(copy.currentIndex), nextIndex(copy.nextIndex),
104 return ((CharacterIterator *)(text->context))->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
116 nextIndex==that.nextIndex;
356 currentIndex=nextIndex=text->move(text, 0, UITER_START);
362 currentIndex=nextIndex=text->move(text, index, UITER_ZERO); // validates inde
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Collection.java 215 int nextIndex = index + 1;
216 byte[] b = getEncoded(getObjectAt(nextIndex));
223 setObjectAt(getObjectAt(nextIndex), index);
224 setObjectAt(o, nextIndex);
  /external/emma/core/java12/com/vladium/jcd/cls/
IConstantCollection.java 40 public int nextIndex ();
44 * get(nextIndex()) and avoiding index bound violation exceptions.
ConstantCollection.java 212 public int nextIndex ()
222 final int nextIndex = nextIndex ();
223 if (nextIndex < 0)
226 return (CONSTANT_info) m_constants.get (nextIndex - 1);
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 150 assertTrue("list iterator nextIndex(): " + i, li.nextIndex() == i);
170 assertTrue("list iterator nextIndex()2: " + i, li.nextIndex() == i);
194 assertEquals("list iterator add(), nextIndex()", 1, li.nextIndex());
203 assertEquals("list iterator add(), nextIndex()2", 2, li.nextIndex());
210 assertEquals("list iterator remove(), nextIndex()", 2, li.nextIndex());
    [all...]
  /external/chromium/third_party/icu/source/i18n/
csrmbcs.h 35 int32_t nextIndex;
csrmbcs.cpp 116 charValue(0), index(-1), nextIndex(0), error(FALSE), done(FALSE)
125 nextIndex = 0;
132 if (nextIndex >= det->fRawLength) {
138 return det->fRawInput[nextIndex++];
243 it->index = it->nextIndex;
295 it->index = it->nextIndex;
403 it->index = it->nextIndex;
455 it->index = it->nextIndex;
  /external/icu4c/i18n/
csrmbcs.h 35 int32_t nextIndex;
csrmbcs.cpp 116 charValue(0), index(-1), nextIndex(0), error(FALSE), done(FALSE)
125 nextIndex = 0;
132 if (nextIndex >= det->fRawLength) {
138 return det->fRawInput[nextIndex++];
243 it->index = it->nextIndex;
295 it->index = it->nextIndex;
403 it->index = it->nextIndex;
455 it->index = it->nextIndex;
  /external/nist-sip/java/gov/nist/javax/sip/message/
HeaderIterator.java 65 public int nextIndex() {
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractSequentialListTest.java 99 public int nextIndex() {
138 public int nextIndex() {
359 public int nextIndex() {
494 public int nextIndex() {
573 public int nextIndex() {
  /external/proguard/src/proguard/retrace/
ReTrace.java 122 int nextIndex = regularExpression.indexOf('%', index);
123 if (nextIndex < 0 ||
124 nextIndex == regularExpression.length()-1 ||
130 expressionBuffer.append(regularExpression.substring(index, nextIndex));
133 char expressionType = regularExpression.charAt(nextIndex + 1);
169 index = nextIndex + 2;
  /frameworks/base/core/java/android/widget/
FastScroller.java 318 int nextIndex = count;
324 nextIndex = mSectionIndexer.getPositionForSection(section + 1);
328 if (nextIndex == index) {
352 mSectionIndexer.getPositionForSection(nextNextSection) == nextIndex) {
364 index = prevIndex + (int) ((nextIndex - prevIndex) * (position - fPrev)
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 916 int nextIndex = findNextPCharOrNonPOrNonWCharIndex(phoneNumber, currIndex);
918 if (nextIndex < length) {
919 char pC = findPOrWCharToAppend(phoneNumber, currIndex, nextIndex);
924 if (nextIndex > (currIndex + 1)) {
925 currIndex = nextIndex - 1;
927 } else if (nextIndex == length) {

Completed in 522 milliseconds

1 2 3