Searched defs:NULL (Results 1 - 6 of 6) sorted by relevance

/libcore/support/src/test/java/libcore/tlswire/handshake/
H A DCompressionMethod.java24 public static final CompressionMethod NULL = new CompressionMethod(0, "null"); field in class:CompressionMethod
38 return NULL;
/libcore/json/src/main/java/org/json/
H A DJSONStringer.java107 NULL, enum constant in enum:JSONStringer.Scope
245 || value == JSONObject.NULL) {
414 } else if (context != Scope.NULL) {
H A DJSONObject.java32 * JSONArrays}, Strings, Booleans, Integers, Longs, Doubles or {@link #NULL}.
55 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the
71 * JSONObject#NULL}. In particular, calling {@code put(name, null)} removes the
72 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an
73 * entry whose value is {@code JSONObject.NULL}.
100 public static final Object NULL = new Object() { field in class:JSONObject
253 * Integer, Long, Double, {@link #NULL}, or {@code null}. May not be
297 * Integer, Long, Double, {@link #NULL} or null. May not be {@link
369 * a mapping whose value is {@link #NULL}.
373 return value == null || value == NULL;
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DTypes.java175 * <code>NULL</code>.
177 public final static int NULL = 0; field in class:Types
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DSelectorTest.java49 NULL, TIMEOUT, NOW enum constant in enum:SelectorTest.SelectType
156 count = blockingSelect(SelectType.NULL, 0);
218 assert_select_OP_ACCEPT(SelectType.NULL, 0);
219 assert_select_OP_CONNECT(SelectType.NULL, 0);
220 assert_select_OP_READ(SelectType.NULL, 0);
221 assert_select_OP_WRITE(SelectType.NULL, 0);
228 assert_select_SelectorClosed(SelectType.NULL, 0);
295 selectOnce(SelectType.NULL, 0);
312 selectOnce(SelectType.NULL, 0);
663 case NULL
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DEnumMap.java97 * mapped to anything, or NULL if it's mapped to null.
109 private static final Object NULL = new Object() { field in class:EnumMap
115 return "java.util.EnumMap.NULL";
120 return (value == null ? NULL : value);
125 return (V)(value == NULL ? null : value);

Completed in 6377 milliseconds