Searched refs:EMPTY_TABLE (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DHashMap.java71 private static final Entry[] EMPTY_TABLE field in class:HashMap
111 * the capacity is zero, as described in the EMPTY_TABLE declaration
126 table = (HashMapEntry<K, V>[]) EMPTY_TABLE;
127 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE
145 HashMapEntry<K, V>[] tab = (HashMapEntry<K, V>[]) EMPTY_TABLE;
147 threshold = -1; // Forces first put() to replace EMPTY_TABLE
205 if (table == EMPTY_TABLE) {
H A DHashtable.java56 private static final Entry[] EMPTY_TABLE field in class:Hashtable
90 * the capacity is zero, as described in the EMPTY_TABLE declaration
106 table = (HashtableEntry<K, V>[]) EMPTY_TABLE;
107 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE
124 HashtableEntry<K, V>[] tab = (HashtableEntry<K, V>[]) EMPTY_TABLE;
126 threshold = -1; // Forces first put() to replace EMPTY_TABLE
181 if (table == EMPTY_TABLE) {

Completed in 20 milliseconds