Home | History | Annotate | Download | only in ppapi

Lines Matching refs:next_

56     next_ = this;
61 next_ = ptr->next_;
62 ptr->next_ = this;
68 if (next_ == this) return true;
69 linked_ptr_internal const* p = next_;
70 while (p->next_ != this) p = p->next_;
71 p->next_ = next_;
76 mutable linked_ptr_internal const* next_;