HomeSort by relevance Sort by last modified time
    Searched full:nextvalue (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/pdfium/core/fxcrt/css/
cfx_cssvaluelistparser_unittest.cpp 19 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
22 EXPECT_FALSE(parser->NextValue(&type, &start, &len));
25 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
28 EXPECT_FALSE(parser->NextValue(&type, &start, &len));
32 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
37 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
40 EXPECT_FALSE(parser->NextValue(&type, &start, &len));
49 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
54 EXPECT_TRUE(parser->NextValue(&type, &start, &len));
59 EXPECT_TRUE(parser->NextValue(&type, &start, &len))
    [all...]
cfx_cssvaluelistparser.h 17 bool NextValue(CFX_CSSPrimitiveType* eType,
cfx_cssvaluelistparser.cpp 18 bool CFX_CSSValueListParser::NextValue(CFX_CSSPrimitiveType* eType,
cfx_cssdeclaration.cpp 259 if (!list.NextValue(&eType, &pszValue, &iValueLen))
480 while (parser.NextValue(&eType, &pszValue, &iValueLen)) {
599 while (parser.NextValue(&eType, &pszValue, &iValueLen)) {
656 while (parser.NextValue(&eType, &pszValue, &iValueLen)) {
  /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)).
  /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/libcore/org/json/
SelfUseTest.java 122 @Override public Object nextValue() throws JSONException {
124 return super.nextValue();
231 tokener.nextValue();
ParsingTest.java 36 new JSONTokener("").nextValue();
217 new JSONTokener(malformedJson).nextValue();
238 Object actual = new JSONTokener(json).nextValue();
JSONTokenerTest.java 84 new JSONTokener(null).nextValue();
132 new JSONTokener("").nextValue();
582 JSONArray array = (JSONArray) tokener.nextValue();
588 JSONArray array = (JSONArray) tokener.nextValue();
  /packages/apps/Settings/src/com/android/settings/
PrivacySettings.java 136 boolean nextValue = (Boolean) newValue;
140 mBackupManager.setAutoRestore(nextValue);
143 mAutoRestore.setChecked(!nextValue);
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner_test.go 206 item, rest, err := nextValue(jsonBig, &scan)
208 t.Fatalf("nextValue: %s", err)
217 item, rest, err = nextValue(append(jsonBig, "HELLO WORLD"...), &scan)
219 t.Fatalf("nextValue extra: %s", err)
235 nextValue(jsonBig, &benchScan)
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_test.go 206 item, rest, err := nextValue(jsonBig, &scan)
208 t.Fatalf("nextValue: %s", err)
217 item, rest, err = nextValue(append(jsonBig, "HELLO WORLD"...), &scan)
219 t.Fatalf("nextValue extra: %s", err)
235 nextValue(jsonBig, &benchScan)
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/examples/BrainF/
BrainF.cpp 197 int nextvalue = 0; local
321 curvalue = nextvalue;
355 nextvalue = direction;
376 nextvalue = direction;
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 188 int nextvalue = 0; local
311 curvalue = nextvalue;
345 nextvalue = direction;
366 nextvalue = direction;
  /external/v8/src/builtins/
builtins-async-iterator.cc 184 // Let nextValue be IteratorValue(nextResult).
185 // IfAbruptRejectPromise(nextValue, promiseCapability).
  /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());
  /frameworks/base/core/java/android/widget/
RadialTimePickerView.java     [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);
  /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...]
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 343 int nextValue = counter + 1;
345 counter = 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;

Completed in 7226 milliseconds

1 2 3 4