Home | History | Annotate | Download | only in src

Lines Matching refs:Shape

2057 template<typename Shape, typename Key>
2058 int HashTable<Shape, Key>::ComputeCapacity(int at_least_space_for) {
2068 template<typename Shape, typename Key>
2069 int HashTable<Shape, Key>::FindEntry(Key key) {
2075 template<typename Shape, typename Key>
2076 int HashTable<Shape, Key>::FindEntry(Isolate* isolate, Key key) {
2078 uint32_t entry = FirstProbe(HashTable<Shape, Key>::Hash(key), capacity);
2086 Shape::IsMatch(key, element)) return entry;
2183 template <typename Shape, typename Key>
2184 HashTable<Shape, Key>* HashTable<Shape, Key>::cast(Object* obj) {
4621 template<typename Shape, typename Key>
4622 void Dictionary<Shape, Key>::SetEntry(int entry,
4629 template<typename Shape, typename Key>
4630 void Dictionary<Shape, Key>::SetEntry(int entry,
4635 int index = HashTable<Shape, Key>::EntryToIndex(entry);