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.java143 private transient HashtableEntry<?,?>[] table;
197 table = new HashtableEntry<?,?>[initialCapacity]; in Hashtable()
315 HashtableEntry<?,?> tab[] = table; in contains()
317 for (HashtableEntry<?,?> e = tab[i] ; e != null ; e = e.next) { in contains()
353 HashtableEntry<?,?> tab[] = table; in containsKey()
356 for (HashtableEntry<?,?> e = tab[index] ; e != null ; e = e.next) { in containsKey()
381 HashtableEntry<?,?> tab[] = table; in get()
384 for (HashtableEntry<?,?> e = tab[index] ; e != null ; e = e.next) { in get()
410 HashtableEntry<?,?>[] oldMap = table; in rehash()
420 HashtableEntry<?,?>[] newMap = new HashtableEntry<?,?>[newCapacity]; in rehash()
[all …]