HomeSort by relevance Sort by last modified time
    Searched full:nextindex (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /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...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 64 int nextIndex = i + 1;
68 assertEquals(nextIndex, dateSorter.getIndex(boundary));
69 assertEquals(nextIndex, dateSorter.getIndex(boundary-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...]
  /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/guava/guava/src/com/google/common/collect/
ForwardingListIterator.java 52 public int nextIndex() {
53 return delegate().nextIndex();
AbstractIndexedListIterator.java 59 * initial position. That is, the first call to {@link #nextIndex()} will
88 public final int nextIndex() {
LinkedListMultimap.java 280 int nextIndex;
293 nextIndex = size;
314 nextIndex++;
322 nextIndex--;
338 nextIndex--;
342 public int nextIndex() {
343 return nextIndex;
347 return nextIndex - 1;
394 int nextIndex;
419 nextIndex = size
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListIteratorTest.java 67 forward.nextIndex();
68 assertEquals("[nextIndex]", getCalls());
UnmodifiableListIteratorTest.java 90 @Override public int nextIndex() {
  /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/
AbstractSequentialList.java 44 int next = it.nextIndex();
48 return next != it.nextIndex();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedListMultimap.java 276 int nextIndex;
289 nextIndex = size;
310 nextIndex++;
318 nextIndex--;
334 nextIndex--;
338 public int nextIndex() {
339 return nextIndex;
343 return nextIndex - 1;
390 int nextIndex;
415 nextIndex = size
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 249 for (int nextIndex = currIndex + 1; nextIndex < chain.length; nextIndex++) {
250 if (chain[currIndex].getIssuerDN().equals(chain[nextIndex].getSubjectDN())) {
253 if (nextIndex != currIndex + 1) {
258 X509Certificate tempCertificate = chain[nextIndex];
259 chain[nextIndex] = chain[currIndex + 1];
  /external/grub/stage2/
fsys_jfs.c 75 jfs.xlastindex = xtp->header.nextindex;
82 jfs.xlastindex = xtpage->header.nextindex;
95 jfs.xlastindex = xtpage->header.nextindex;
148 jfs.slastindex = dtpage->header.nextindex;
172 jfs.slastindex = dtr->header.nextindex;
184 jfs.slastindex = dtpage->header.nextindex;
  /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());
  /external/icu4c/i18n/
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/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 48 unsigned NextIndex;
50 RecordingJITEventListener() : NextIndex(0) {}
55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details};
60 FunctionFreedEvent Event = {NextIndex++, OldPtr};
  /libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java 74 assertEquals(0, i.nextIndex());
  /external/emma/core/java12/com/vladium/jcd/cls/
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/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;
  /external/nist-sip/java/gov/nist/javax/sip/message/
HeaderIterator.java 65 public int nextIndex() {
  /external/regex-re2/re2/
onepass.cc 263 uint32 nextindex = cond >> kIndexShift; local
264 state = IndexToNode(nodes, statesize, nextindex);
448 int nextindex = nodebyid[ip->out()]; local
449 if (nextindex == -1) {
457 nextindex = nalloc;
459 nodebyid[ip->out()] = nextindex;
469 uint32 newact = (nextindex << kIndexShift) | cond;
489 uint32 newact = (nextindex << kIndexShift) | cond;
  /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);

Completed in 1168 milliseconds

1 2 3 4