Home | History | Annotate | Download | only in ref

Lines Matching defs:HashEntry

87    * internal HashEntry array.
102 private HashEntry[] m_table;
123 m_table = new HashEntry[m_capacity];
138 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null);
192 // Calculate the index into the HashEntry table.
199 for (HashEntry e = m_table[index]; e != null; e = e.next)
210 // Expand the internal HashEntry array if necessary.
233 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]);
248 HashEntry[] oldTable = m_table;
254 m_table = new HashEntry[newCapacity];
257 for (HashEntry old = oldTable[i]; old != null; )
259 HashEntry e = old;
375 private static final class HashEntry
380 HashEntry next;
382 protected HashEntry(ExtendedType key, int value, int hash, HashEntry next)