Searched defs:isNull (Results 1 - 3 of 3) sorted by relevance

/libcore/json/src/main/java/org/json/
H A DJSONArray.java243 public boolean isNull(int index) { method in class:JSONArray
H A DJSONObject.java333 public boolean isNull(String name) { method in class:JSONObject
/libcore/luni/src/main/java/java/util/
H A DWeakHashMap.java60 boolean isNull; field in class:WeakHashMap.Entry
72 isNull = key == null;
73 hash = isNull ? 0 : key.hashCode();
130 if (nextEntry != null && (nextKey != null || nextEntry.isNull)) {
146 if (nextKey != null || nextEntry.isNull) {
322 if (key != null || entry.isNull) {
487 if (entry.isNull) {
510 if (entry.isNull) {
534 if ((key != null || entry.isNull)
546 if ((key != null || entry.isNull)
[all...]

Completed in 98 milliseconds