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

1 2 3 4 5 6

  /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);
  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 61 float nextValue = nextKeyframe.getFloatValue();
70 prevValue + intervalFraction * (nextValue - prevValue) :
71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
77 float nextValue = nextKeyframe.getFloatValue();
86 prevValue + intervalFraction * (nextValue - prevValue) :
87 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
98 float nextValue = nextKeyframe.getFloatValue();
104 prevValue + intervalFraction * (nextValue - prevValue) :
105 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
IntKeyframeSet.java 61 int nextValue = nextKeyframe.getIntValue();
70 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
77 int nextValue = nextKeyframe.getIntValue();
86 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
87 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).intValue();
97 int nextValue = nextKeyframe.getIntValue();
103 prevValue + (int)(intervalFraction * (nextValue - prevValue)) :
104 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
  /hardware/google/av/codec2/vndk/util/
C2InterfaceUtils.cpp 124 double nextValue = fma(lastValue, base, _mStep);
125 if (nextValue <= lastValue || nextValue > _mMax) {
128 lastValue = nextValue;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
GetValues002Test.java 116 Value nextValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE * 2);
118 suspensionMethodInfo.addVariable("param", oldValue, null /* no set value */, nextValue);
121 methodInfo.addVariable("local", oldValue, null /* no set value */, nextValue);
  /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());
  /libcore/json/src/test/java/libcore/org/json/
ParsingTest.java 36 new JSONTokener("").nextValue();
217 new JSONTokener(malformedJson).nextValue();
238 Object actual = new JSONTokener(json).nextValue();
SelfUseTest.java 122 @Override public Object nextValue() throws JSONException {
124 return super.nextValue();
231 tokener.nextValue();
JSONTokenerTest.java 84 new JSONTokener(null).nextValue();
132 new JSONTokener("").nextValue();
582 JSONArray array = (JSONArray) tokener.nextValue();
588 JSONArray array = (JSONArray) tokener.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);
  /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;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerSwitch.cpp 249 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
  /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());
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 11 // in this package (Compact, Indent, checkValid, nextValue, etc).
39 // nextValue splits data after the next whole JSON value,
41 // scan is passed in for use by nextValue to avoid an allocation.
42 func nextValue(data []byte, scan *scanner) (value, rest []byte, err error) {
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 11 // in this package (Compact, Indent, checkValid, nextValue, etc).
39 // nextValue splits data after the next whole JSON value,
41 // scan is passed in for use by nextValue to avoid an allocation.
42 func nextValue(data []byte, scan *scanner) (value, rest []byte, err error) {
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 369 int64_t nextValue = J->Low->getSExtValue();
376 assert(nextValue > currentValue && "Cases should be strictly ascending");
377 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) {
  /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/util/
JsonReader.java 334 JsonToken firstToken = nextValue();
352 JsonToken token = nextValue();
619 return nextValue();
691 return nextValue();
694 private JsonToken nextValue() throws IOException {
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /prebuilts/misc/common/json/
json-prebuilt.jar 
  /frameworks/base/core/java/android/widget/
RadialTimePickerView.java     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 

Completed in 401 milliseconds

1 2 3 4 5 6