Lines Matching refs:other
14 and/or other materials provided with the distribution.
53 AllocatorRef(const AllocatorRef &other) : alloc_(other.alloc_) {}
55 AllocatorRef& operator=(const AllocatorRef &other) {
56 alloc_ = other.alloc_;
62 void move(AllocatorRef &other) {
63 alloc_ = other.alloc_;
64 other.alloc_ = 0;
68 AllocatorRef(AllocatorRef &&other) {
69 move(other);
72 AllocatorRef& operator=(AllocatorRef &&other) {
73 assert(this != &other);
74 move(other);