Home | History | Annotate | Download | only in containers

Lines Matching refs:next_

85   LinkNode() : previous_(0), next_(0) {}
87 : previous_(previous), next_(next) {}
91 this->next_ = e;
93 e->previous_->next_ = this;
99 this->next_ = e->next_;
101 e->next_->previous_ = this;
102 e->next_ = this;
107 this->previous_->next_ = this->next_;
108 this->next_->previous_ = this->previous_;
116 return next_;
130 LinkNode<T>* next_;