Lines Matching refs:other
401 void swap(MoveArray<TElement>& other);
567 void Swap(MoveArray<TElement>& other) { this->swap(other); } in Swap() argument
948 MoveArray<TElement>& other in swap() argument
951 if (&other == this) in swap()
961 m_Elements = other.m_Elements; in swap()
962 m_End = other.m_End; in swap()
963 m_Capacity = other.m_Capacity; in swap()
964 m_Allocator = other.m_Allocator; in swap()
966 other.m_Elements = elements; in swap()
967 other.m_End = end; in swap()
968 other.m_Capacity = capacity; in swap()
969 other.m_Allocator = allocator; in swap()