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

123

/external/proguard/src/proguard/util/
H A DListUtil.java74 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
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListIterator.java52 public int nextIndex() { method in class:ForwardingListIterator
53 return delegate().nextIndex();
H A DAbstractIndexedListIterator.java59 * initial position. That is, the first call to {@link #nextIndex()} will
88 public final int nextIndex() { method in class:AbstractIndexedListIterator
H A DLinkedListMultimap.java280 int nextIndex; field in class:LinkedListMultimap.NodeIterator
293 nextIndex = size;
314 nextIndex++;
322 nextIndex--;
338 nextIndex--;
342 public int nextIndex() { method in class:LinkedListMultimap.NodeIterator
343 return nextIndex;
347 return nextIndex - 1;
394 int nextIndex; field in class:LinkedListMultimap.ValueForKeyIterator
419 nextIndex
462 public int nextIndex() { method in class:LinkedListMultimap.ValueForKeyIterator
[all...]
H A DEmptyImmutableList.java54 @Override public int nextIndex() {
H A DSingletonImmutableList.java84 @Override public int nextIndex() {
H A DLists.java400 public int nextIndex() {
401 return delegate.nextIndex();
851 @Override public int nextIndex() {
852 return reversePosition(forwardIterator.nextIndex());
864 return nextIndex() - 1;
950 return listIterator.nextIndex();
/external/icu4c/common/
H A Dnormlzr.cpp34 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
[all...]
/external/proguard/src/proguard/
H A DOutputWriter.java115 int nextIndex = index + 1;
116 if (nextIndex == programJars.size() ||
117 !programJars.get(nextIndex).isOutput())
124 nextIndex);
127 firstInputIndex = nextIndex;
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIConstantCollection.java40 public int nextIndex (); method in interface:IConstantCollection.IConstantIterator
44 * get(nextIndex()) and avoiding index bound violation exceptions.
H A DConstantCollection.java212 public int nextIndex () method in class:ConstantCollection.ConstantIterator
222 final int nextIndex = nextIndex ();
223 if (nextIndex < 0)
226 return (CONSTANT_info) m_constants.get (nextIndex - 1);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingListIteratorTest.java67 forward.nextIndex();
68 assertEquals("[nextIndex]", getCalls());
H A DUnmodifiableListIteratorTest.java90 @Override public int nextIndex() {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java147 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...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java276 int nextIndex; field in class:LinkedListMultimap.NodeIterator
289 nextIndex = size;
310 nextIndex++;
318 nextIndex--;
334 nextIndex--;
338 public int nextIndex() { method in class:LinkedListMultimap.NodeIterator
339 return nextIndex;
343 return nextIndex - 1;
390 int nextIndex; field in class:LinkedListMultimap.ValueForKeyIterator
415 nextIndex
458 public int nextIndex() { method in class:LinkedListMultimap.ValueForKeyIterator
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java65 public int nextIndex() { method in class:HeaderIterator
/external/webkit/Source/WebCore/page/animation/
H A DKeyframeAnimation.cpp103 int nextIndex = -1; local
113 nextIndex = i;
126 if (nextIndex == -1)
127 nextIndex = m_keyframes.size() - 1;
130 const KeyframeValue& nextKeyframe = m_keyframes[nextIndex];
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java234 public int nextIndex() { method in class:AbstractIteratorTester.MultiExceptionListIterator
245 return nextIndex() - 1;
626 Stimulus<E, ListIterator<E>> nextIndex = field in class:AbstractIteratorTester
627 new Stimulus<E, ListIterator<E>>("nextIndex") {
630 assertEquals(reference.nextIndex(), target.nextIndex());
665 hasPrevious, nextIndex, previousIndex, previous, add, set);
/external/proguard/src/proguard/retrace/
H A DReTrace.java122 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;
/external/icu4c/i18n/
H A Dcsrmbcs.h35 int32_t nextIndex; member in class:IteratedChar
H A Dcsrmbcs.cpp116 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/webkit/Source/WebCore/inspector/front-end/
H A DTextPrompt.js259 var nextIndex = foundIndex + (reverse ? -1 : 1);
260 if (foundIndex === null || nextIndex >= completions.length)
262 else if (nextIndex < 0)
265 var completionText = completions[nextIndex];
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractSequentialListTest.java187 public int nextIndex() { method in class:AbstractSequentialListTest.MockListIterator
/external/icu4c/common/unicode/
H A Dnormlzr.h752 // of the source in [currentIndex..nextIndex[ .
753 int32_t currentIndex, nextIndex; member in class:Normalizer
/external/jdiff/src/jdiff/
H A DHTMLIndexes.java325 Index nextIndex = (Index)(iter.next());
327 currIndex = nextIndex; // Prime the pump
329 if (nextIndex.name_.compareTo(currIndex.name_) == 0) {
343 currIndex = nextIndex;
896 Index nextIndex = (Index)(iter.next());
898 currIndex = nextIndex; // Prime the pump
900 if (nextIndex.name_.compareTo(currIndex.name_) == 0) {
914 currIndex = nextIndex;

Completed in 1162 milliseconds

123