Home
last modified time | relevance | path

Searched refs:HashtableEntry (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DHashtable.java137 private transient HashtableEntry<?,?>[] table;
190 table = new HashtableEntry<?,?>[initialCapacity]; in Hashtable()
298 HashtableEntry<?,?> tab[] = table; in contains()
300 for (HashtableEntry<?,?> e = tab[i] ; e != null ; e = e.next) { in contains()
336 HashtableEntry<?,?> tab[] = table; in containsKey()
339 for (HashtableEntry<?,?> e = tab[index] ; e != null ; e = e.next) { in containsKey()
364 HashtableEntry<?,?> tab[] = table; in get()
367 for (HashtableEntry<?,?> e = tab[index] ; e != null ; e = e.next) { in get()
393 HashtableEntry<?,?>[] oldMap = table; in rehash()
403 HashtableEntry<?,?>[] newMap = new HashtableEntry<?,?>[newCapacity]; in rehash()
[all …]