Lines Matching full:other
188 MapPtr(MapPtr &&other) noexcept in MapPtr() argument
190 ptr_ = other.ptr_; in MapPtr()
191 page_offset_ = other.page_offset_; in MapPtr()
192 size_ = other.size_; in MapPtr()
193 deleter_ = other.deleter_; in MapPtr()
194 other.ptr_ = nullptr; in MapPtr()
195 other.deleter_ = nullptr; in MapPtr()
198 MapPtr &operator=(MapPtr &&other) noexcept
200 ptr_ = other.ptr_;
201 page_offset_ = other.page_offset_;
202 size_ = other.size_;
203 deleter_ = other.deleter_;
204 other.ptr_ = nullptr;
205 other.deleter_ = nullptr;
311 * if you need other behavior - consider to change interface, or use manual unpoisoning.
322 * if you need other behavior - consider to change interface, or use manual unpoisoning.
348 * if you need other behavior - consider to change interface, or use manual unpoisoning.