Home | History | Annotate | Download | only in containers

Lines Matching defs:previous_

87   LinkNode() : previous_(NULL), next_(NULL) {}
89 : previous_(previous), next_(next) {}
94 this->previous_ = e->previous_;
95 e->previous_->next_ = this;
96 e->previous_ = this;
102 this->previous_ = e;
103 e->next_->previous_ = this;
109 this->previous_->next_ = this->next_;
110 this->next_->previous_ = this->previous_;
114 this->previous_ = NULL;
118 return previous_;
135 LinkNode<T>* previous_;