Lines Matching refs:prev_
78 ListNode<T>::ListNode() : prev_(this), next_(this) {}87 prev_->next_ = next_;88 next_->prev_ = prev_;89 prev_ = this;95 return prev_ == this;127 head_.prev_->next_ = that;128 that->prev_ = head_.prev_;130 head_.prev_ = that;136 head_.next_->prev_ = that;137 that->prev_ = &head_;