HomeSort by relevance Sort by last modified time
    Searched defs:nextIndex (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp 73 int nextIndex = firstIndex + 1;
77 SkASSERT(nextIndex != firstIndex);
78 if (nextIndex == angleCount) {
79 nextIndex = 0;
81 angle = sorted[nextIndex];
97 } while (++nextIndex != lastIndex);
SkPathOpsCommon.cpp 173 int nextIndex = firstIndex + 1;
178 SkASSERT(nextIndex != firstIndex);
179 if (nextIndex == angleCount) {
180 nextIndex = 0;
182 angle = sorted[nextIndex];
204 } while (++nextIndex != lastIndex);
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 471 @Override public int nextIndex() {
480 return reverseIndex(forward.nextIndex());
Lists.java 400 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();
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...]
AbstractMultimap.java 824 public int nextIndex() {
825 return getDelegateListIterator().nextIndex();
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SafeArrayList.java 375 public int nextIndex() {
  /external/skia/src/pathops/
SkPathOpsOp.cpp 73 int nextIndex = firstIndex + 1;
77 SkASSERT(nextIndex != firstIndex);
78 if (nextIndex == angleCount) {
79 nextIndex = 0;
81 angle = sorted[nextIndex];
97 } while (++nextIndex != lastIndex);
SkPathOpsCommon.cpp 173 int nextIndex = firstIndex + 1;
178 SkASSERT(nextIndex != firstIndex);
179 if (nextIndex == angleCount) {
180 nextIndex = 0;
182 angle = sorted[nextIndex];
204 } while (++nextIndex != lastIndex);
  /libcore/luni/src/main/java/java/util/
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();
LinkedList.java 127 public int nextIndex() {
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 76 public int nextIndex() {
161 assertTrue(objArray[i].equals(l.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() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 136 final int nextIndex = index + 1;
137 if (nextIndex < length && text.charAt(nextIndex) == QUOTE) {
139 index = nextIndex;
143 final int endIndex = text.indexOf(COMMA, nextIndex);
166 final int nextIndex = end + 1;
167 if (nextIndex == length && isQuoted) {
171 if (nextIndex < length && text.charAt(nextIndex) == QUOTE) {
179 sb.append(text.substring(start, nextIndex));
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_writing_helper.cpp 56 const int nextIndex = matchedCodePointCount + j;
57 if (nextIndex >= codePointCount || !readingHelper->isMatchedCodePoint(j,
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.cpp 359 unsigned nextIndex = result.iterator->value++;
364 formKeyBuilder.appendNumber(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/java/util/concurrent/
CopyOnWriteArrayList.java 726 public int nextIndex() {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 234 public int nextIndex() {
245 return nextIndex() - 1;
626 Stimulus<E, ListIterator<E>> nextIndex =
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/
ReTrace.java 125 int nextIndex = regularExpression.indexOf('%', index);
126 if (nextIndex < 0 ||
127 nextIndex == regularExpression.length()-1 ||
133 expressionBuffer.append(regularExpression.substring(index, nextIndex));
136 char expressionType = regularExpression.charAt(nextIndex + 1);
172 index = nextIndex + 2;
  /frameworks/native/libs/input/
VelocityTracker.cpp 635 uint32_t nextIndex = (index + 1) % HISTORY_SIZE;
636 float deltaMillis = (mMovements[nextIndex].eventTime- mMovements[index].eventTime)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 142 final int nextIndex = (currentIndex + 1) % enabledSubtypes.size();
143 if (nextIndex <= currentIndex && !onlyCurrentIme) {
148 final InputMethodSubtype nextSubtype = enabledSubtypes.get(nextIndex);
192 final int nextIndex = (currentIndex + i) % count;
193 final InputMethodInfo nextImi = imiList.get(nextIndex);
  /external/jdiff/src/jdiff/
HTMLIndexes.java 325 Index nextIndex = (Index)(iter.next());
327 currIndex = nextIndex; // Prime the pump
329 if (nextIndex.name_.compareTo(currIndex.name_) == 0) {
343 currIndex = nextIndex;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 910 int nextIndex = findNextPCharOrNonPOrNonWCharIndex(phoneNumber, currIndex);
912 if (nextIndex < length) {
913 char pC = findPOrWCharToAppend(phoneNumber, currIndex, nextIndex);
918 if (nextIndex > (currIndex + 1)) {
919 currIndex = nextIndex - 1;
921 } else if (nextIndex == length) {
  /frameworks/rs/
rsFont.cpp 185 size_t nextIndex = 0;
189 int32_t utfChar = utf32_from_utf8_at(text, len, index, &nextIndex);
197 index = nextIndex;

Completed in 2108 milliseconds

12 3 4 5 6