Lines Matching refs:other
386 void swap(MoveArray<TElement>& other);
552 void Swap(MoveArray<TElement>& other) { this->swap(other); } in Swap() argument
929 MoveArray<TElement>& other in swap() argument
932 if (&other == this) in swap()
942 m_Elements = other.m_Elements; in swap()
943 m_End = other.m_End; in swap()
944 m_Capacity = other.m_Capacity; in swap()
945 m_Allocator = other.m_Allocator; in swap()
947 other.m_Elements = elements; in swap()
948 other.m_End = end; in swap()
949 other.m_Capacity = capacity; in swap()
950 other.m_Allocator = allocator; in swap()