Lines Matching defs:that
53 // validate that the byte_offset is aligned with sizeof(NativeT)
68 const AliasedBufferBase& that)
69 : isolate_(that.isolate_),
70 count_(that.count_),
71 byte_offset_(that.byte_offset_),
72 buffer_(that.buffer_) {
74 js_array_ = v8::Global<V8T>(that.isolate_, that.GetJSArray());
90 // These may not hold true for AliasedBuffers that have grown, so should
102 AliasedBufferBase<NativeT, V8T>&& that) noexcept {
105 isolate_ = that.isolate_;
106 count_ = that.count_;
107 byte_offset_ = that.byte_offset_;
108 buffer_ = that.buffer_;
110 js_array_.Reset(isolate_, that.js_array_.Get(isolate_));
112 that.buffer_ = nullptr;
113 that.js_array_.Reset();