Home
last modified time | relevance | path

Searched refs:nextValue (Results 1 – 9 of 9) 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/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/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/guava/guava-tests/test/com/google/common/base/
DSuppliersTest.java343 int nextValue = counter + 1; in testSynchronizedSupplierThreadSafe()
345 counter = nextValue; in testSynchronizedSupplierThreadSafe()
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONTokener.java334 public Object nextValue() throws JSONException { in nextValue() method in JSONTokener
DJSONObject.java191 key = x.nextValue().toString(); in JSONObject()
206 putOnce(key, x.nextValue()); in JSONObject()
DJSONArray.java125 this.myArrayList.add(x.nextValue()); in JSONArray()
/external/v8/benchmarks/
Dnavier-stokes.js247 var nextValue = row + 1;
250 … div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp370 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
377 if ((nextValue-currentValue==1) && (currentBB == nextBB)) { in Clusterify()