Searched refs:tail_ (Results 1 - 1 of 1) sorted by relevance

/bionic/linker/
H A Dlinked_list.h83 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_
259 LinkedListEntry<T>* tail_; member in class:LinkedList
[all...]

Completed in 3499 milliseconds