Searched refs:nextValue (Results 1 - 8 of 8) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_UnmodifiableCollectionTest.java79 int nextValue = it.next().intValue();
82 + counter + " got: " + nextValue,
83 nextValue == counter);
/libcore/json/src/main/java/org/json/
H A DJSONTokener.java25 * and {@link #nextValue} method. Example usage: <pre>
31 * JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
93 public Object nextValue() throws JSONException { method in class:JSONTokener
361 Object name = nextValue();
384 result.put((String) name, nextValue());
429 result.put(nextValue());
H A DJSONArray.java82 * @param readFrom a tokener whose nextValue() method will yield a
92 Object object = readFrom.nextValue();
H A DJSONObject.java149 * @param readFrom a tokener whose nextValue() method will yield a
159 Object object = readFrom.nextValue();
/libcore/json/src/test/java/org/json/
H A DParsingTest.java31 new JSONTokener("").nextValue();
212 new JSONTokener(malformedJson).nextValue();
233 Object actual = new JSONTokener(json).nextValue();
H A DSelfUseTest.java117 @Override public Object nextValue() throws JSONException {
119 return super.nextValue();
226 tokener.nextValue();
H A DJSONTokenerTest.java80 new JSONTokener(null).nextValue();
128 new JSONTokener("").nextValue();
578 JSONArray array = (JSONArray) tokener.nextValue();
584 JSONArray array = (JSONArray) tokener.nextValue();
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2273 V nextValue; field in class:ConcurrentSkipListMap.Iter
2281 nextValue = vv;
2300 nextValue = vv;
2320 V v = nextValue;
2337 V v = nextValue;
3085 V nextValue; field in class:ConcurrentSkipListMap.SubMap.SubMapIter
3099 nextValue = vv;
3132 nextValue = vv;
3151 nextValue = vv;
3191 V v = nextValue;
[all...]

Completed in 94 milliseconds