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

/libcore/luni/src/main/java/java/util/
H A DHashMap.java72 = new HashMapEntry[MINIMUM_CAPACITY >>> 1];
90 transient HashMapEntry<K, V>[] table;
95 transient HashMapEntry<K, V> entryForNullKey;
126 table = (HashMapEntry<K, V>[]) EMPTY_TABLE;
145 HashMapEntry<K, V>[] tab = (HashMapEntry<K, V>[]) EMPTY_TABLE;
293 HashMapEntry<K, V> e = entryForNullKey;
302 HashMapEntry<K, V>[] tab = table;
303 for (HashMapEntry<K, V> e = tab[hash & (tab.length - 1)];
331 HashMapEntry<
723 static class HashMapEntry<K, V> implements Entry<K, V> { class in class:HashMap
729 HashMapEntry(K key, V value, int hash, HashMapEntry<K, V> next) { method in class:HashMap.HashMapEntry
[all...]

Completed in 51 milliseconds