Lines Matching defs:that
27 AliasedStruct<T>::AliasedStruct(const AliasedStruct& that)28 : AliasedStruct(that.isolate_, *that) {}32 AliasedStruct<T>&& that) noexcept {34 isolate_ = that.isolate_;35 store_ = that.store_;36 ptr_ = that.ptr_;38 buffer_ = std::move(that.buffer_);40 that.ptr_ = nullptr;41 that.store_.reset();