• Home
  • Raw
  • Download

Lines Matching full:other

251     ALWAYS_INLINE inline void MovePrimitive(const T &other)  in MovePrimitive()  argument
253 ASSERT(!other.HasObject()); in MovePrimitive()
254 static_cast<T *>(this)->MovePrimitive(other); in MovePrimitive()
257 ALWAYS_INLINE inline void MoveReference(const T &other) in MoveReference() argument
259 ASSERT(other.HasObject()); in MoveReference()
260 static_cast<T *>(this)->MoveReference(other); in MoveReference()
263 ALWAYS_INLINE inline void Move(const T &other) in Move() argument
265 static_cast<T *>(this)->Move(other); in Move()
416 ALWAYS_INLINE inline StaticVRegisterRef &operator=(const StaticVRegisterRef &other)
418 *payload_ = *other.payload_;
419 *mirror_ = *other.mirror_;
424 ALWAYS_INLINE inline StaticVRegisterRef &operator=(StaticVRegisterRef &&other)
426 *payload_ = *other.payload_;
427 *mirror_ = *other.mirror_;
436 ALWAYS_INLINE inline void MovePrimitive(const StaticVRegisterRef &other) in MovePrimitive() argument
438 payload_->SetValue(other.payload_->GetValue()); in MovePrimitive()
442 ALWAYS_INLINE inline void MoveReference(const StaticVRegisterRef &other) in MoveReference() argument
444 payload_->SetValue(other.payload_->GetValue()); in MoveReference()
448 ALWAYS_INLINE inline void Move(const StaticVRegisterRef &other) in Move() argument
450 payload_->SetValue(other.payload_->GetValue()); in Move()
451 mirror_->SetValue(other.mirror_->GetValue()); in Move()
509 ALWAYS_INLINE inline DynamicVRegisterRef &operator=(const DynamicVRegisterRef &other)
511 *payload_ = *other.payload_;
516 ALWAYS_INLINE inline DynamicVRegisterRef &operator=(DynamicVRegisterRef &&other)
518 *payload_ = *other.payload_;
528 ALWAYS_INLINE inline void MovePrimitive(const DynamicVRegisterRef &other) in MovePrimitive() argument
530 ASSERT(!other.HasObject()); in MovePrimitive()
531 Move(other); in MovePrimitive()
534 ALWAYS_INLINE inline void MoveReference(const DynamicVRegisterRef &other) in MoveReference() argument
536 ASSERT(other.HasObject()); in MoveReference()
537 Move(other); in MoveReference()
540 ALWAYS_INLINE inline void Move(const DynamicVRegisterRef &other) in Move() argument
542 payload_->SetValue(other.payload_->GetValue()); in Move()