/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/test/java/org/json/ |
SelfUseTest.java | 117 @Override public Object nextValue() throws JSONException { 119 return super.nextValue(); 226 tokener.nextValue();
|
ParsingTest.java | 31 new JSONTokener("").nextValue(); 212 new JSONTokener(malformedJson).nextValue(); 233 Object actual = new JSONTokener(json).nextValue();
|
JSONTokenerTest.java | 80 new JSONTokener(null).nextValue(); 128 new JSONTokener("").nextValue(); 579 JSONArray array = (JSONArray) tokener.nextValue(); 585 JSONArray array = (JSONArray) tokener.nextValue();
|
/external/chromium_org/chrome/browser/sync/test/integration/performance/ |
autofill_sync_perf_test.cc | 76 const std::string NextValue(); 153 const std::string AutofillSyncPerfTest::NextValue() {
|
/external/llvm/examples/BrainF/ |
BrainF.cpp | 189 int nextvalue = 0; local 312 curvalue = nextvalue; 346 nextvalue = direction; 367 nextvalue = direction;
|
/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 | 82 * @param readFrom a tokener whose nextValue() method will yield a 92 Object object = readFrom.nextValue();
|
JSONObject.java | 145 * @param readFrom a tokener whose nextValue() method will yield a 155 Object object = readFrom.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...] |
/external/guava/guava-tests/test/com/google/common/base/ |
SuppliersTest.java | 342 int nextValue = counter + 1; 344 counter = nextValue;
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
InstallShortcutReceiver.java | 129 JSONObject object = (JSONObject) new JSONTokener(json).nextValue(); 162 JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StylePropertySerializer.cpp | 594 RefPtr<CSSValue> nextValue = values[j + 1]; 595 if (nextValue->isValueList()) 596 yValue = toCSSValueList(nextValue.get())->itemWithoutBoundsCheck(i); 598 yValue = nextValue; [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/smack/src/org/jivesoftware/smack/util/collections/ |
AbstractReferenceMap.java | 745 V nextValue; 777 nextValue = e.getValue(); 792 return (nextKey == null) || (nextValue == null); 803 currentValue = nextValue; 805 nextValue = null; [all...] |
/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/chromium_org/v8/benchmarks/ |
navier-stokes.js | 247 var nextValue = row + 1; 250 div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
|
/external/v8/benchmarks/ |
navier-stokes.js | 247 var nextValue = row + 1; 250 div[++currentRow] = h * (u[++nextValue] - u[++prevValue] + v[++nextRow] - v[++previousRow]);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8PromiseCustom.cpp | 563 V8TRYCATCH_VOID(v8::Local<v8::Value>, nextValue, iterable->Get(i)); 564 v8::Local<v8::Object> nextPromise = V8PromiseCustom::toPromise(nextValue, isolate); 600 V8TRYCATCH_VOID(v8::Local<v8::Value>, nextValue, iterable->Get(i)); 601 v8::Local<v8::Object> nextPromise = V8PromiseCustom::toPromise(nextValue, isolate); [all...] |
/prebuilts/misc/common/json/ |
json-prebuilt.jar | |
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
actionscript3.php | 171 'nextValue', 'nextSibling', 'nextScene', 'nextNameIndex',
|