Lines Matching defs:roots
37 bool OrderedHashTable<Derived, entrysize>::IsKey(ReadOnlyRoots roots,
39 return k != roots.the_hole_value();
84 Handle<Map> OrderedHashSet::GetMap(ReadOnlyRoots roots) {
85 return roots.ordered_hash_set_map_handle();
88 Handle<Map> OrderedHashMap::GetMap(ReadOnlyRoots roots) {
89 return roots.ordered_hash_map_map_handle();
92 Handle<Map> OrderedNameDictionary::GetMap(ReadOnlyRoots roots) {
93 return roots.ordered_name_dictionary_map_handle();
96 Handle<Map> SmallOrderedNameDictionary::GetMap(ReadOnlyRoots roots) {
97 return roots.small_ordered_name_dictionary_map_handle();
100 Handle<Map> SmallOrderedHashMap::GetMap(ReadOnlyRoots roots) {
101 return roots.small_ordered_hash_map_map_handle();
104 Handle<Map> SmallOrderedHashSet::GetMap(ReadOnlyRoots roots) {
105 return roots.small_ordered_hash_set_map_handle();
122 // Parameter |roots| only here for compatibility with HashTable<...>::ToKey.
124 bool OrderedHashTable<Derived, entrysize>::ToKey(ReadOnlyRoots roots,
128 if (!IsKey(roots, k)) return false;