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

12 3 4 5 6 7

  /external/skia/src/pathops/
SkPathOpsOp.cpp 64 int nextIndex = firstIndex + 1;
68 SkASSERT(nextIndex != firstIndex);
69 if (nextIndex == angleCount) {
70 nextIndex = 0;
72 angle = sorted[nextIndex];
88 } while (++nextIndex != lastIndex);
SkPathOpsCommon.cpp 172 int nextIndex = firstIndex + 1;
177 SkASSERT(nextIndex != firstIndex);
178 if (nextIndex == angleCount) {
179 nextIndex = 0;
181 angle = sorted[nextIndex];
203 } while (++nextIndex != lastIndex);
  /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/chromium_org/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/guava/guava-tests/test/com/google/common/collect/
UnmodifiableListIteratorTest.java 90 @Override public int nextIndex() {
  /external/nist-sip/java/gov/nist/javax/sip/message/
HeaderIterator.java 65 public int nextIndex() {
  /libcore/crypto/src/main/java/org/conscrypt/
TrustManagerImpl.java 339 for (int nextIndex = currIndex + 1; nextIndex < chain.length; nextIndex++) {
340 if (chain[currIndex].getIssuerDN().equals(chain[nextIndex].getSubjectDN())) {
343 if (nextIndex != currIndex + 1) {
348 X509Certificate tempCertificate = chain[nextIndex];
349 chain[nextIndex] = chain[currIndex + 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() {
  /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/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;
  /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/icu4c/i18n/
csrmbcs.h 35 int32_t nextIndex;
csrmbcs.cpp 117 charValue(0), index(-1), nextIndex(0), error(FALSE), done(FALSE)
126 nextIndex = 0;
133 if (nextIndex >= det->fRawLength) {
139 return det->fRawInput[nextIndex++];
244 it->index = it->nextIndex;
297 it->index = it->nextIndex;
409 it->index = it->nextIndex;
463 it->index = it->nextIndex;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponse.java 142 return nextIndex() != -1;
145 private int nextIndex() {
155 index = nextIndex();
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
UnicodeEscaper.java 186 int nextIndex = index + (Character.isSupplementaryCodePoint(cp) ? 2 : 1);
207 unescapedChunkStart = nextIndex;
209 index = nextEscapeIndex(s, nextIndex, end);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
UnicodeEscaper.java 186 int nextIndex = index + (Character.isSupplementaryCodePoint(cp) ? 2 : 1);
207 unescapedChunkStart = nextIndex;
209 index = nextEscapeIndex(s, nextIndex, end);
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
KeyframeAnimation.cpp 124 int nextIndex = -1;
130 nextIndex = i;
150 if (nextIndex == -1)
151 nextIndex = numKeyframes - 1;
154 const KeyframeValue& nextKeyframe = m_keyframes[nextIndex];
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkGradientShader.cpp 488 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> kCache16Shift;
489 SkASSERT(nextIndex < kCache16Count);
491 if (nextIndex > prevIndex)
492 Build16bitCache(fCache16 + prevIndex, fOrigColors[i-1], fOrigColors[i], nextIndex - prevIndex + 1);
493 prevIndex = nextIndex;
532 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> kCache32Shift;
533 SkASSERT(nextIndex < kCache32Count);
535 if (nextIndex > prevIndex)
537 fOrigColors[i], nextIndex - prevIndex + 1,
539 prevIndex = nextIndex;
    [all...]
  /external/skia/src/effects/gradients/
SkGradientShader.cpp 488 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> kCache16Shift;
489 SkASSERT(nextIndex < kCache16Count);
491 if (nextIndex > prevIndex)
492 Build16bitCache(fCache16 + prevIndex, fOrigColors[i-1], fOrigColors[i], nextIndex - prevIndex + 1);
493 prevIndex = nextIndex;
532 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> kCache32Shift;
533 SkASSERT(nextIndex < kCache32Count);
535 if (nextIndex > prevIndex)
537 fOrigColors[i], nextIndex - prevIndex + 1,
539 prevIndex = nextIndex;
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 172 int nextIndex = firstIndex + 1;
177 SkASSERT(nextIndex != firstIndex);
178 if (nextIndex == angleCount) {
179 nextIndex = 0;
181 angle = sorted[nextIndex];
203 } while (++nextIndex != lastIndex);
  /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) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractSequentialListTest.java 187 public int nextIndex() {

Completed in 3869 milliseconds

12 3 4 5 6 7