Lines Matching refs:maps_
2715 const UniqueSet<Map>* maps() const { return maps_; } in maps()
2716 void set_maps(const UniqueSet<Map>* maps) { maps_ = maps; } in set_maps()
2757 maps_(maps), in HCheckMaps()
2773 maps_(maps), in HCheckMaps()
2801 const UniqueSet<Map>* maps_; variable
6297 const UniqueSet<Map>* maps() const { return maps_; } in maps()
6321 if (this->maps_ == that->maps_) return true; in CanBeReplacedWith()
6322 if (this->maps_ == NULL || that->maps_ == NULL) return false; in CanBeReplacedWith()
6323 return this->maps_->IsSubset(that->maps_); in CanBeReplacedWith()
6332 if (this->maps_ == that->maps_) return true; in DECLARE_CONCRETE_INSTRUCTION()
6333 return (this->maps_ != NULL && in DECLARE_CONCRETE_INSTRUCTION()
6334 that->maps_ != NULL && in DECLARE_CONCRETE_INSTRUCTION()
6335 this->maps_->Equals(that->maps_)); in DECLARE_CONCRETE_INSTRUCTION()
6342 : access_(access), maps_(NULL) { in HLoadNamedField()
6378 : HTemplateInstruction<2>(type), access_(access), maps_(maps) { in HLoadNamedField()
6396 const UniqueSet<Map>* maps_; variable