Home
last modified time | relevance | path

Searched refs:nextValue (Results 1 – 25 of 31) sorted by relevance

12

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DParserWithObjectsTest.java75 assertToken(JsonToken.START_ARRAY, jp.nextValue()); in _testNextValueBasic()
77 assertToken(JsonToken.VALUE_NUMBER_INT, jp.nextValue()); in _testNextValueBasic()
80 assertToken(JsonToken.END_ARRAY, jp.nextValue()); in _testNextValueBasic()
81 assertNull(jp.nextValue()); in _testNextValueBasic()
86 assertToken(JsonToken.START_OBJECT, jp.nextValue()); in _testNextValueBasic()
88 assertToken(JsonToken.VALUE_NUMBER_INT, jp.nextValue()); in _testNextValueBasic()
92 assertToken(JsonToken.END_OBJECT, jp.nextValue()); in _testNextValueBasic()
93 assertNull(jp.nextValue()); in _testNextValueBasic()
99 assertToken(JsonToken.START_ARRAY, jp.nextValue()); in _testNextValueBasic()
100 assertToken(JsonToken.VALUE_TRUE, jp.nextValue()); in _testNextValueBasic()
[all …]
DLocationInObjectTest.java24 assertEquals(JsonToken.START_OBJECT, p.nextValue()); in testOffsetWithObjectFieldsUsingUTF8()
29 assertEquals(JsonToken.VALUE_STRING, p.nextValue()); in testOffsetWithObjectFieldsUsingUTF8()
35 assertEquals(JsonToken.START_ARRAY, p.nextValue()); in testOffsetWithObjectFieldsUsingUTF8()
38 assertEquals(JsonToken.VALUE_TRUE, p.nextValue()); in testOffsetWithObjectFieldsUsingUTF8()
41 assertEquals(JsonToken.VALUE_FALSE, p.nextValue()); in testOffsetWithObjectFieldsUsingUTF8()
70 assertEquals(JsonToken.START_OBJECT, p.nextValue()); in testOffsetWithObjectFieldsUsingReader()
75 assertEquals(JsonToken.VALUE_STRING, p.nextValue()); in testOffsetWithObjectFieldsUsingReader()
81 assertEquals(JsonToken.START_ARRAY, p.nextValue()); in testOffsetWithObjectFieldsUsingReader()
84 assertEquals(JsonToken.VALUE_TRUE, p.nextValue()); in testOffsetWithObjectFieldsUsingReader()
87 assertEquals(JsonToken.VALUE_FALSE, p.nextValue()); in testOffsetWithObjectFieldsUsingReader()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/seq/
DReadRecoveryTest.java31 Bean bean = it.nextValue(); in testRootBeans()
35 bean = it.nextValue(); in testRootBeans()
54 Bean bean = it.nextValue(); in testSimpleRootRecovery()
61 it.nextValue(); in testSimpleRootRecovery()
67 bean = it.nextValue(); in testSimpleRootRecovery()
83 Bean bean = it.nextValue(); in testSimpleArrayRecovery()
90 it.nextValue(); in testSimpleArrayRecovery()
96 bean = it.nextValue(); in testSimpleArrayRecovery()
DReadValuesTest.java303 map = iterator.nextValue(); in testNonRootMapsWithObjectReader()
306 map = iterator.nextValue(); in testNonRootMapsWithObjectReader()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/
DTestFormatDetection.java44 POJO pojo = it.nextValue(); in testSequenceWithJSON()
48 pojo = it.nextValue(); in testSequenceWithJSON()
62 JsonNode n = nodes.nextValue(); in testSequenceWithJSON()
66 n = nodes.nextValue(); in testSequenceWithJSON()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DMappingIterator.java199 return nextValue(); in next()
261 public T nextValue() throws IOException in nextValue() method in MappingIterator
320 resultList.add(nextValue()); in readAll()
334 results.add(nextValue()); in readAll()
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DCharacterProperties.java72 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
73 if (value != nextValue) { in makeMap()
78 value = nextValue; in makeMap()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DCharacterProperties.java71 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap() local
72 if (value != nextValue) { in makeMap()
77 value = nextValue; in makeMap()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DPublisherRequestStressTest.kt51 private val nextValue = AtomicLong(0) in <lambda>() constant in kotlinx.coroutines.reactive.PublisherRequestStressTest
138 cont.resume(nextValue.getAndIncrement()) in <lambda>()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DFrequency.java425 Comparable<?> nextValue = values.next(); in getCumFreq() local
426 if (c.compare(v, nextValue) > 0) { in getCumFreq()
427 result += getCount(nextValue); in getCumFreq()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DGetValues002Test.java116 Value nextValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE * 2); in testGetValues005_Int2() local
118 suspensionMethodInfo.addVariable("param", oldValue, null /* no set value */, nextValue); in testGetValues005_Int2()
121 methodInfo.addVariable("local", oldValue, null /* no set value */, nextValue); in testGetValues005_Int2()
/external/icu/icu4c/source/common/
Dcharacterproperties.cpp316 uint32_t nextValue = u_getIntPropertyValue(c, property); in makeMap() local
317 if (value != nextValue) { in makeMap()
322 value = nextValue; in makeMap()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/objectid/
DJSOGDeserialize622Test.java46 protected JSOGGenerator(Class<?> scope, int nextValue) { in JSOGGenerator() argument
48 _nextValue = nextValue; in JSOGGenerator()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DJsonParserDelegate.java229 @Override public JsonToken nextValue() throws IOException { return delegate.nextValue(); } in nextValue() method in JsonParserDelegate
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/
DJsonParserClosedCaseTest.java67 Assert.assertNull(parser.nextValue()); in testNullReturnedOnClosedParserOnNextValue()
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp369 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
376 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
377 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp418 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
425 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
426 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp322 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
329 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
330 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DStackTraceElementDeserializer.java30 while ((t = p.nextValue()) != JsonToken.END_OBJECT) { in deserialize()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateCoverageLevels.java252 String nextValue = nextAttrs.get(key); in addDifferences() local
253 if (!Objects.equals(lastValue, nextValue)) { in addDifferences()
255 if (nextValue != null) old.put(key, nextValue); in addDifferences()
/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp555 …const EGLint nextValue = (value == EGL_BUFFER_DESTROYED) ? EGL_BUFFER_PRESERVED : EGL_BUFFER_DESTR… in testAttributes() local
557 egl.surfaceAttrib(display, surface, EGL_SWAP_BEHAVIOR, nextValue); in testAttributes()
559 if (eglu::querySurfaceInt(egl, display, surface, EGL_SWAP_BEHAVIOR) != nextValue) in testAttributes()
561 …< " Fail, tried to set swap behavior to " << eglu::getSurfaceAttribStr(nextValue) << TestLog::End… in testAttributes()
/external/guava/guava-tests/test/com/google/common/base/
DSuppliersTest.java392 int nextValue = counter + 1; in testSynchronizedSupplierThreadSafe()
394 counter = nextValue; in testSynchronizedSupplierThreadSafe()
/external/guava/android/guava-tests/test/com/google/common/base/
DSuppliersTest.java392 int nextValue = counter + 1; in testSynchronizedSupplierThreadSafe()
394 counter = nextValue; in testSynchronizedSupplierThreadSafe()
/external/llvm-project/mlir/lib/Analysis/Presburger/
DSimplex.cpp1076 int64_t nextValue = nextValueStack.back(); in findIntegerSample() local
1078 if (nextValue > upperBoundStack.back()) { in findIntegerSample()
1091 basisCoeffs.push_back(-nextValue); in findIntegerSample()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DUntypedDeserializationTest.java67 while (p.nextValue() != JsonToken.END_ARRAY) { in deserialize()
94 while (p.nextValue() != JsonToken.END_OBJECT) { in deserialize()

12