Lines Matching defs:other
57 TemplateHashMapImpl(TemplateHashMapImpl&& other) V8_NOEXCEPT = default;
61 TemplateHashMapImpl& operator=(TemplateHashMapImpl&& other)
156 Impl(Impl&& other) V8_NOEXCEPT { *this = std::move(other); }
158 Impl& operator=(const Impl& other) V8_NOEXCEPT = default;
159 Impl& operator=(Impl&& other) V8_NOEXCEPT {
160 MatchFun::operator=(std::move(other));
161 AllocationPolicy::operator=(std::move(other));
162 map_ = other.map_;
163 capacity_ = other.capacity_;
164 occupancy_ = other.occupancy_;
166 other.map_ = nullptr;
167 other.capacity_ = 0;
168 other.occupancy_ = 0;
506 PointerTemplateHashMapImpl(const PointerTemplateHashMapImpl& other,
508 : Base(&other, allocator) {}
510 PointerTemplateHashMapImpl(PointerTemplateHashMapImpl&& other) V8_NOEXCEPT
511 : Base(std::move(other)) {}
513 PointerTemplateHashMapImpl& operator=(PointerTemplateHashMapImpl&& other)
515 static_cast<Base&>(*this) = std::move(other);
548 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }