Lines Matching defs:other
1492 // all the other intermediate maps are created.
1612 // the other details from the |initial_map|.
2114 bool Map::EquivalentToForTransition(const Map other,
2116 CHECK_EQ(GetConstructor(), other.GetConstructor());
2117 CHECK_EQ(instance_type(), other.instance_type());
2119 if (bit_field() != other.bit_field()) return false;
2120 if (new_target_is_base() != other.new_target_is_base()) return false;
2121 if (prototype() != other.prototype()) return false;
2126 std::min(NumberOfOwnDescriptors(), other.NumberOfOwnDescriptors());
2131 IsConcurrent(cmode) ? other.instance_descriptors(kAcquireLoad)
2132 : other.instance_descriptors();
2138 bool Map::EquivalentToForElementsKindTransition(const Map other,
2140 if (!EquivalentToForTransition(other, cmode)) return false;
2159 bool Map::EquivalentToForNormalization(const Map other,
2163 mode == CLEAR_INOBJECT_PROPERTIES ? 0 : other.GetInObjectProperties();
2168 Map::Bits2::ElementsKindBits::update(other.bit_field2(), elements_kind);
2169 return CheckEquivalent(*this, other) &&
2173 JSObject::GetEmbedderFieldCount(other);