Lines Matching refs:other
240 handle_object(handle_object&& other)
241 : my_lru_cache_ptr(other.my_lru_cache_ptr), my_map_record_ptr(other.my_map_record_ptr) {
244 (other.my_lru_cache_ptr != nullptr && other.my_map_record_ptr != nullptr) ||
245 (other.my_lru_cache_ptr == nullptr && other.my_map_record_ptr == nullptr),
248 other.my_lru_cache_ptr = nullptr;
249 other.my_map_record_ptr = nullptr;
252 handle_object& operator=(handle_object&& other) {
254 (other.my_lru_cache_ptr != nullptr && other.my_map_record_ptr != nullptr) ||
255 (other.my_lru_cache_ptr == nullptr && other.my_map_record_ptr == nullptr),
261 my_lru_cache_ptr = other.my_lru_cache_ptr;
262 my_map_record_ptr = other.my_map_record_ptr;
263 other.my_lru_cache_ptr = nullptr;
264 other.my_map_record_ptr = nullptr;