Home
last modified time | relevance | path

Searched refs:nextValue (Results 1 – 17 of 17) sorted by relevance

/external/apache-harmony/support/src/test/java/tests/support/
DSupport_UnmodifiableCollectionTest.java79 int nextValue = it.next().intValue(); in runTest() local
82 + counter + " got: " + nextValue, in runTest()
83 nextValue == counter); in runTest()
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DCharacterProperties.java73 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
74 if (value != nextValue) { in makeMap()
79 value = nextValue; in makeMap()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DCharacterProperties.java72 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
73 if (value != nextValue) { in makeMap()
78 value = nextValue; in makeMap()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DFrequency.java425 Comparable<?> nextValue = values.next(); in getCumFreq() local
426 if (c.compare(v, nextValue) > 0) { in getCumFreq()
427 result += getCount(nextValue); in getCumFreq()
/external/icu/icu4c/source/common/
Dcharacterproperties.cpp314 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
315 if (value != nextValue) { in makeMap()
320 value = nextValue; in makeMap()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DGetValues002Test.java116 Value nextValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE * 2); in testGetValues005_Int2() local
118 suspensionMethodInfo.addVariable("param", oldValue, null /* no set value */, nextValue); in testGetValues005_Int2()
121 methodInfo.addVariable("local", oldValue, null /* no set value */, nextValue); in testGetValues005_Int2()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp381 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
388 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
389 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp369 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
376 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
377 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerSwitch.cpp249 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue(); in Clusterify() local
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) { in Clusterify()
/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp555 …const EGLint nextValue = (value == EGL_BUFFER_DESTROYED) ? EGL_BUFFER_PRESERVED : EGL_BUFFER_DESTR… in testAttributes() local
557 egl.surfaceAttrib(display, surface, EGL_SWAP_BEHAVIOR, nextValue); in testAttributes()
559 if (eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR) != nextValue) in testAttributes()
561 …< " Fail, tried to set swap behavior to " << eglu::getSurfaceAttribStr(nextValue) << TestLog::End… in testAttributes()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCoverageLevels.java250 String nextValue = nextAttrs.get(key); in addDifferences() local
251 if (!Objects.equals(lastValue, nextValue)) { in addDifferences()
253 if (nextValue != null) old.put(key, nextValue); in addDifferences()
/external/guava/guava-tests/test/com/google/common/base/
DSuppliersTest.java343 int nextValue = counter + 1; in testSynchronizedSupplierThreadSafe()
345 counter = nextValue; in testSynchronizedSupplierThreadSafe()
/external/v8/benchmarks/
Dnavier-stokes.js247 var nextValue = row + 1;
250 … div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
/external/guice/core/test/com/google/inject/internal/
DMultibinderTest.java377 int nextValue = 1; in testMultibinderSetIsLazy()
381 return nextValue++; in testMultibinderSetIsLazy()
DMapBinderTest.java494 int nextValue = 1; in testMapBinderMapIsLazy()
498 return nextValue++; in testMapBinderMapIsLazy()
DOptionalBinderTest.java810 int nextValue = 1; in testOptionalIsAppropriatelyLazy()
822 return nextValue++; in testOptionalIsAppropriatelyLazy()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2404 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); in Clusterify() local
2411 if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { in Clusterify()