Home | History | Annotate | Download | only in src

Lines Matching refs:HashTable

67 //         - HashTable
974 V(HashTable) \
3616 // HashTable is a subclass of FixedArray that implements a hash table
3666 class HashTable: public FixedArray {
3715 // Returns a new HashTable object.
3723 // number of elements. May be more than HashTable::kMaxCapacity.
3740 static inline HashTable* cast(Object* obj);
3762 // Maximal capacity of HashTable. Based on maximal length of underlying
3888 class StringTable: public HashTable<StringTable,
3948 class MapCache: public HashTable<MapCache, MapCacheShape, HashTableKey*> {
3962 class Dictionary: public HashTable<Derived, Shape, Key> {
3964 typedef HashTable<Derived, Shape, Key> DerivedHashTable;
4119 // HashTable::FindEntry.
4247 class ObjectHashTable: public HashTable<ObjectHashTable,
4250 typedef HashTable<
4290 // OrderedHashTable is a HashTable with Object keys that preserves
4517 class WeakHashTable: public HashTable<WeakHashTable,
4520 typedef HashTable<
8314 class CompilationCacheTable: public HashTable<CompilationCacheTable,
8414 class CodeCacheHashTable: public HashTable<CodeCacheHashTable,
8465 : public HashTable<PolymorphicCodeCacheHashTable,
10455 // - slow, backing storage is a HashTable with numbers as keys.