Lines Matching full:hashtable
10 class HashTable {
12 HashTable(int size, T default_value = T());
13 ~HashTable();
42 HashTable<T>::HashTable(int size, T default_value)
64 HashTable<T>::~HashTable()
84 uint32_t HashTable<T>::HashFunction(const char *key)
96 void HashTable<T>::Update(const char *key, T value)
125 bool HashTable<T>::Remove(const char *key)
150 typename HashTable<T>::value_type HashTable<T>::Find(const char *key)
166 typename HashTable<T>::entry_type* HashTable<T>::GetFirst()
184 typename HashTable<T>::entry_type* HashTable<T>::GetNext()