HomeSort by relevance Sort by last modified time
    Searched refs:nextValue (Results 1 - 25 of 59) sorted by null

1 2 3

  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 87 float nextValue = nextKeyframe.getFloatValue();
96 prevValue + intervalFraction * (nextValue - prevValue) :
97 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
103 float nextValue = nextKeyframe.getFloatValue();
112 prevValue + intervalFraction * (nextValue - prevValue) :
113 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
124 float nextValue = nextKeyframe.getFloatValue();
130 prevValue + intervalFraction * (nextValue - prevValue) :
131 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
IntKeyframeSet.java 87 int nextValue = nextKeyframe.getIntValue();
96 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
97 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
103 int nextValue = nextKeyframe.getIntValue();
112 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
113 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).intValue();
123 int nextValue = nextKeyframe.getIntValue();
129 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
130 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 79 int nextValue = it.next().intValue();
82 + counter + " got: " + nextValue,
83 nextValue == counter);
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 79 int nextValue = it.next().intValue();
82 + counter + " got: " + nextValue,
83 nextValue == counter);
  /libcore/json/src/main/java/org/json/
JSONTokener.java 25 * and {@link #nextValue} method. Example usage: <pre>
31 * JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
93 public Object nextValue() throws JSONException {
361 Object name = nextValue();
384 result.put((String) name, nextValue());
429 result.put(nextValue());
JSONArray.java 82 * @param readFrom a tokener whose nextValue() method will yield a
92 Object object = readFrom.nextValue();
JSONObject.java 146 * @param readFrom a tokener whose nextValue() method will yield a
156 Object object = readFrom.nextValue();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
Frequency.java 425 Comparable<?> nextValue = values.next();
426 if (c.compare(v, nextValue) > 0) {
427 result += getCount(nextValue);
  /libcore/json/src/test/java/org/json/
ParsingTest.java 31 new JSONTokener("").nextValue();
212 new JSONTokener(malformedJson).nextValue();
233 Object actual = new JSONTokener(json).nextValue();
SelfUseTest.java 117 @Override public Object nextValue() throws JSONException {
119 return super.nextValue();
226 tokener.nextValue();
JSONTokenerTest.java 80 new JSONTokener(null).nextValue();
128 new JSONTokener("").nextValue();
578 JSONArray array = (JSONArray) tokener.nextValue();
584 JSONArray array = (JSONArray) tokener.nextValue();
  /packages/apps/Settings/src/com/android/settings/
PrivacySettings.java 121 boolean nextValue = (Boolean) newValue;
125 mBackupManager.setAutoRestore(nextValue);
128 mAutoRestore.setChecked(!nextValue);
  /frameworks/base/core/java/android/util/
JsonReader.java 334 JsonToken firstToken = nextValue();
352 JsonToken token = nextValue();
619 return nextValue();
691 return nextValue();
694 private JsonToken nextValue() throws IOException {
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 313 JsonToken firstToken = nextValue();
587 return nextValue();
659 return nextValue();
662 private JsonToken nextValue() throws IOException {
994 * Assigns {@code nextToken} based on the value of {@code nextValue}.
    [all...]
  /frameworks/base/core/java/android/widget/
RadialTimePickerView.java     [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONTokener.java 334 public Object nextValue() throws JSONException {
JSONArray.java 125 this.myArrayList.add(x.nextValue());
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 343 int nextValue = counter + 1;
345 counter = nextValue;
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /external/deqp/modules/egl/
teglQuerySurfaceTests.cpp 555 const EGLint nextValue = (value == EGL_BUFFER_DESTROYED) ? EGL_BUFFER_PRESERVED : EGL_BUFFER_DESTROYED;
557 egl.surfaceAttrib(display, surface, EGL_SWAP_BEHAVIOR, nextValue);
559 if (eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR) != nextValue)
561 log << TestLog::Message << " Fail, tried to set swap behavior to " << eglu::getSurfaceAttribStr(nextValue) << TestLog::EndMessage;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 265 var nextValue = row + 1;
268 div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 370 int64_t nextValue = J->Low->getSExtValue();
377 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
  /external/v8/benchmarks/
navier-stokes.js 247 var nextValue = row + 1;
250 div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
  /prebuilts/misc/common/json/
json-prebuilt.jar 
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 121 JSONObject object = (JSONObject) new JSONTokener(json).nextValue();

Completed in 661 milliseconds

1 2 3