Lines Matching defs:other
50 VectorBuffer(VectorBuffer&& other) noexcept
51 : buffer_(other.buffer_), capacity_(other.capacity_) {
52 other.buffer_ = nullptr;
53 other.capacity_ = 0;
58 VectorBuffer& operator=(VectorBuffer&& other) {
60 buffer_ = other.buffer_;
61 capacity_ = other.capacity_;
63 other.buffer_ = nullptr;
64 other.capacity_ = 0;