Home | History | Annotate | Download | only in base

Lines Matching defs:previous_

86   LinkNode() : previous_(0), next_(0) {}
88 : previous_(previous), next_(next) {}
93 this->previous_ = e->previous_;
94 e->previous_->next_ = this;
95 e->previous_ = this;
101 this->previous_ = e;
102 e->next_->previous_ = this;
108 this->previous_->next_ = this->next_;
109 this->next_->previous_ = this->previous_;
113 return previous_;
133 previous_ = prev; next_ = next;
137 LinkNode<T>* previous_;