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

1 2

  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 81 float nextValue = nextKeyframe.getFloatValue();
90 prevValue + intervalFraction * (nextValue - prevValue) :
91 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
97 float nextValue = nextKeyframe.getFloatValue();
106 prevValue + intervalFraction * (nextValue - prevValue) :
107 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
121 float nextValue = nextKeyframe.getFloatValue();
123 prevValue + intervalFraction * (nextValue - prevValue) :
124 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
IntKeyframeSet.java 81 int nextValue = nextKeyframe.getIntValue();
90 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
91 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
97 int nextValue = nextKeyframe.getIntValue();
106 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
107 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).intValue();
120 int nextValue = nextKeyframe.getIntValue();
122 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
123 ((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 {
362 Object name = nextValue();
385 result.put((String) name, nextValue());
430 result.put(nextValue());
JSONArray.java 77 * @param readFrom a tokener whose nextValue() method will yield a
87 Object object = readFrom.nextValue();
JSONObject.java 144 * @param readFrom a tokener whose nextValue() method will yield a
154 Object object = readFrom.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();
579 JSONArray array = (JSONArray) tokener.nextValue();
585 JSONArray array = (JSONArray) tokener.nextValue();
  /frameworks/base/core/java/android/util/
JsonReader.java 334 JsonToken firstToken = nextValue();
352 JsonToken token = nextValue();
616 return nextValue();
688 return nextValue();
691 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...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 249 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 342 int nextValue = counter + 1;
344 counter = nextValue;
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /external/webkit/Source/WebCore/css/
CSSMutableStyleDeclaration.cpp 362 RefPtr<CSSValue> nextValue = values[j + 1];
363 if (nextValue->isValueList())
364 yValue = static_cast<CSSValueList*>(nextValue.get())->itemWithoutBoundsCheck(i);
366 yValue = nextValue;
    [all...]
CSSParser.cpp     [all...]
  /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 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /external/zxing/core/
core.jar 
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 615 milliseconds

1 2