Home | History | Annotate | Download | only in linker

Lines Matching defs:tail_

34   LinkedList() : head_(nullptr), tail_(nullptr) {}
41 if (tail_ == nullptr) {
42 tail_ = new_entry;
50 if (tail_ == nullptr) {
51 tail_ = head_ = new_entry;
53 tail_->next = new_entry;
54 tail_ = new_entry;
69 tail_ = nullptr;
82 tail_ = nullptr;
114 LinkedListEntry<T>* tail_;