Lines Matching defs:that
493 void CopyableGlobal<T>::Copy(const CopyableGlobal &that)
496 vm_ = that.vm_;
497 if (!that.IsEmpty()) {
499 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*that));
505 void CopyableGlobal<T>::Copy(const CopyableGlobal<S> &that)
508 vm_ = that.GetEcmaVM();
509 if (!that.IsEmpty()) {
511 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*that));
516 void CopyableGlobal<T>::Move(CopyableGlobal &that)
519 vm_ = that.vm_;
520 address_ = that.address_;
521 that.vm_ = nullptr;
522 that.address_ = 0U;
560 void Global<T>::Update(const Global &that)
565 address_ = that.address_;
566 vm_ = that.vm_;