Home | History | Annotate | Download | only in src

Lines Matching refs:maps_

5436       : maps_(maps),
5444 if (maps_->length() != other_maps.length()) return false;
5446 int this_hash = MapsHashHelper(maps_, code_flags_);
5450 // Full comparison: for each map in maps_, look for an equivalent map in
5453 for (int i = 0; i < maps_->length(); ++i) {
5456 if (*(maps_->at(i)) == *(other_maps.at(j))) {
5475 return MapsHashHelper(maps_, code_flags_);
5487 // The maps in |maps_| must be copied to a newly allocated FixedArray,
5491 HEAP->AllocateUninitializedFixedArray(maps_->length() + 1);
5496 for (int i = 0; i < maps_->length(); ++i) {
5497 list->set(i + 1, *maps_->at(i));
5515 MapHandleList* maps_; // weak.