Lines Matching refs:move
115 data(std::move(other.data)) in concurrent_priority_queue()
122 data(std::move(other.data), alloc) in concurrent_priority_queue()
139 data = std::move(other.data);
278 *(tmp->elem) = std::move(data.back()); in handle_operations()
297 data.push_back(std::move(*(tmp->elem))); in handle_operations()
323 *(tmp->elem) = std::move(data.back()); in handle_operations()
328 *(tmp->elem) = std::move(data[0]); in handle_operations()
349 value_type to_place = std::move(data[mark]); in heapify()
354 data[cur_pos] = std::move(data[parent]); in heapify()
357 data[cur_pos] = std::move(to_place); in heapify()
373 data[cur_pos] = std::move(data[target]); in reheap()
378 data[cur_pos] = std::move(data.back()); in reheap()