Lines Matching refs:tail_
83 LinkedList() : head_(nullptr), tail_(nullptr) {} in LinkedList()
90 this->tail_ = that.tail_; in LinkedList()
91 that.head_ = that.tail_ = nullptr; in LinkedList()
99 if (tail_ == nullptr) { in push_front()
100 tail_ = new_entry; in push_front()
108 if (tail_ == nullptr) { in push_back()
109 tail_ = head_ = new_entry; in push_back()
111 tail_->next = new_entry; in push_back()
112 tail_ = new_entry; in push_back()
127 tail_ = nullptr; in pop_front()
148 tail_ = nullptr; in clear()
184 if (tail_ == e) { in remove_if()
185 tail_ = p; in remove_if()
259 LinkedListEntry<T>* tail_; variable