Home | History | Annotate | Download | only in src

Lines Matching refs:maps_

7570       : maps_(maps),
7578 if (maps_->length() != other_maps.length()) return false;
7580 int this_hash = MapsHashHelper(maps_, code_flags_);
7584 // Full comparison: for each map in maps_, look for an equivalent map in
7587 for (int i = 0; i < maps_->length(); ++i) {
7590 if (*(maps_->at(i)) == *(other_maps.at(j))) {
7609 return MapsHashHelper(maps_, code_flags_);
7620 // The maps in |maps_| must be copied to a newly allocated FixedArray,
7624 isolate->factory()->NewUninitializedFixedArray(maps_->length() + 1);
7626 for (int i = 0; i < maps_->length(); ++i) {
7627 list->set(i + 1, *maps_->at(i));
7645 MapHandleList* maps_; // weak.