Home | History | Annotate | Download | only in containers

Lines Matching defs:next_

87   LinkNode() : previous_(NULL), next_(NULL) {}
89 : previous_(previous), next_(next) {}
93 this->next_ = e;
95 e->previous_->next_ = this;
101 this->next_ = e->next_;
103 e->next_->previous_ = this;
104 e->next_ = this;
109 this->previous_->next_ = this->next_;
110 this->next_->previous_ = this->previous_;
113 this->next_ = NULL;
122 return next_;
136 LinkNode<T>* next_;