Lines Matching refs:cage_base
34 PtrComprCageBase cage_base = GetPtrComprCageBase(*this);
35 return ValueAt(cage_base, entry);
39 Object Dictionary<Derived, Shape>::ValueAt(PtrComprCageBase cage_base,
41 return this->get(cage_base, DerivedHashTable::EntryToIndex(entry) +
203 PtrComprCageBase cage_base = GetPtrComprCageBase(*this);
204 return NameAt(cage_base, entry);
207 Name NameDictionary::NameAt(PtrComprCageBase cage_base, InternalIndex entry) {
208 return Name::cast(KeyAt(cage_base, entry));
216 PtrComprCageBase cage_base = GetPtrComprCageBase(*this);
217 return CellAt(cage_base, entry);
220 PropertyCell GlobalDictionary::CellAt(PtrComprCageBase cage_base,
222 DCHECK(KeyAt(cage_base, entry).IsPropertyCell(cage_base));
223 return PropertyCell::cast(KeyAt(cage_base, entry));
227 PtrComprCageBase cage_base = GetPtrComprCageBase(*this);
228 return NameAt(cage_base, entry);
231 Name GlobalDictionary::NameAt(PtrComprCageBase cage_base, InternalIndex entry) {
232 return CellAt(cage_base, entry).name(cage_base);
236 PtrComprCageBase cage_base = GetPtrComprCageBase(*this);
237 return ValueAt(cage_base, entry);
240 Object GlobalDictionary::ValueAt(PtrComprCageBase cage_base,
242 return CellAt(cage_base, entry).value(cage_base);