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

/libcore/ojluni/src/main/java/java/util/
H A DHashMap.java154 static final HashMapEntry<?,?>[] EMPTY_TABLE = {};
159 transient HashMapEntry<K,V>[] table = (HashMapEntry<K,V>[]) EMPTY_TABLE;
287 table = new HashMapEntry[capacity];
364 for (HashMapEntry<K,V> e = table[0]; e != null; e = e.next) {
394 for (HashMapEntry<K,V> e = table[indexFor(hash, table.length)];
425 for (HashMapEntry<K,V> e = table[i]; e != null; e = e.next) {
444 for (HashMapEntry<K,V> e = table[0]; e != null; e = e.next) {
472 for (HashMapEntry<K,V> e = table[i]; e != null; e = e.next) {
504 HashMapEntry[] oldTabl
730 static class HashMapEntry<K,V> implements Map.Entry<K,V> { class in class:HashMap
739 HashMapEntry(int h, K k, V v, HashMapEntry<K,V> n) { method in class:HashMap.HashMapEntry
[all...]

Completed in 47 milliseconds