Home | History | Annotate | Download | only in linker

Lines Matching defs:tail_

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