Lines Matching refs:cell_
800 cell_(cell),
803 DCHECK_EQ(type_, cell_.property_details().cell_type());
804 DCHECK_EQ(read_only_, cell_.property_details().IsReadOnly());
808 Handle<PropertyCell> cell = cell_.object();
811 if (cell->value() == *(cell_.isolate()->factory()->the_hole_value())) {
819 deps->Register(cell_.object(), DependentCode::kPropertyCellChangedGroup);
825 return base::hash_combine(h(cell_), static_cast<int>(type_), read_only_);
830 return cell_.equals(zat->cell_) && type_ == zat->type_ &&
834 const PropertyCellRef cell_;
842 : CompilationDependency(kProtector), cell_(cell) {}
845 Handle<PropertyCell> cell = cell_.object();
850 deps->Register(cell_.object(), DependentCode::kPropertyCellChangedGroup);
856 return base::hash_combine(h(cell_));
861 return cell_.equals(zat->cell_);
864 const PropertyCellRef cell_;