Lines Matching refs:head_
121 head_.next_->Remove();
127 head_.prev_->next_ = that;
128 that->prev_ = head_.prev_;
129 that->next_ = &head_;
130 head_.prev_ = that;
136 head_.next_->prev_ = that;
137 that->prev_ = &head_;
138 that->next_ = head_.next_;
139 head_.next_ = that;
144 return head_.IsEmpty();
151 ListNode<T>* node = head_.next_;
158 return Iterator(head_.next_);
163 return Iterator(const_cast<ListNode<T>*>(&head_));