Lines Matching refs:roots
76 int HashTable<Derived, Shape>::FindEntry(ReadOnlyRoots roots, Key key, in FindEntry() argument
82 Object* undefined = roots.undefined_value(); in FindEntry()
83 Object* the_hole = roots.the_hole_value(); in FindEntry()
99 bool HashTable<Derived, Shape>::IsKey(ReadOnlyRoots roots, Object* k) { in IsKey() argument
100 return Shape::IsKey(roots, k); in IsKey()
104 bool HashTable<Derived, Shape>::ToKey(ReadOnlyRoots roots, int entry, in ToKey() argument
107 if (!IsKey(roots, k)) return false; in ToKey()
113 bool BaseShape<KeyT>::IsKey(ReadOnlyRoots roots, Object* key) { in IsKey() argument
114 return IsLive(roots, key); in IsKey()
118 bool BaseShape<KeyT>::IsLive(ReadOnlyRoots roots, Object* k) { in IsLive() argument
119 return k != roots.the_hole_value() && k != roots.undefined_value(); in IsLive()