HomeSort by relevance Sort by last modified time
    Searched refs:nextIndex (Results 1 - 25 of 63) 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 44 int next = it.nextIndex();
48 return next != it.nextIndex();
AbstractList.java 118 public int nextIndex() {
192 return iterator.nextIndex() < end;
200 if (iterator.nextIndex() < end) {
206 public int nextIndex() {
207 return iterator.nextIndex() - start;
586 return it.nextIndex();
592 return it.nextIndex();
  /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/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 241 for (int nextIndex = currIndex + 1; nextIndex < chain.length; nextIndex++) {
242 if (chain[currIndex].getIssuerDN().equals(chain[nextIndex].getSubjectDN())) {
245 if (nextIndex != currIndex + 1) {
250 X509Certificate tempCertificate = chain[nextIndex];
251 chain[nextIndex] = chain[currIndex + 1];
  /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);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 147 assertTrue("list iterator nextIndex(): " + i, li.nextIndex() == i);
167 assertTrue("list iterator nextIndex()2: " + i, li.nextIndex() == i);
191 assertEquals("list iterator add(), nextIndex()", 1, li.nextIndex());
200 assertEquals("list iterator add(), nextIndex()2", 2, li.nextIndex());
207 assertEquals("list iterator remove(), nextIndex()", 2, li.nextIndex());
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 147 assertTrue("list iterator nextIndex(): " + i, li.nextIndex() == i);
167 assertTrue("list iterator nextIndex()2: " + i, li.nextIndex() == i);
191 assertEquals("list iterator add(), nextIndex()", 1, li.nextIndex());
200 assertEquals("list iterator add(), nextIndex()2", 2, li.nextIndex());
207 assertEquals("list iterator remove(), nextIndex()", 2, li.nextIndex());
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 226 assertEquals(5, i.nextIndex());
229 assertEquals(4, i.nextIndex());
234 assertEquals(3, i.nextIndex());
239 assertEquals(2, i.nextIndex());
244 assertEquals(1, i.nextIndex());
249 assertEquals(0, i.nextIndex());
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 709 private int nextIndex; // Index of element to be returned by next
720 nextItem = itemAt(nextIndex = takeIndex);
736 lastRet = nextIndex;
737 E x = itemAt(nextIndex); // check for fresher value
745 (nextItem = itemAt(nextIndex = inc(nextIndex))) == null)
768 nextIndex = dec(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 87 public int nextIndex() {
126 public int nextIndex() {
329 public int nextIndex() {
444 public int nextIndex() {
517 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;
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 76 public int nextIndex() {
161 assertTrue(objArray[i].equals(l.nextIndex()));
CollectionsTest.java 74 assertEquals(0, i.nextIndex());
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.cpp 103 int nextIndex = -1;
113 nextIndex = i;
126 if (nextIndex == -1)
127 nextIndex = m_keyframes.size() - 1;
130 const KeyframeValue& nextKeyframe = m_keyframes[nextIndex];
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 915 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) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractSequentialListTest.java 187 public int nextIndex() {

Completed in 1334 milliseconds

1 2 3