Lines Matching refs:entry_
1638 entry_ = (*entry_)->next();
1641 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
1642 T* operator*() { return *entry_; }
1644 T* next = *(*entry_)->next();
1646 *entry_ = entry;
1651 explicit Iterator(T** entry) : entry_(entry) {}
1653 T** entry_;
1661 entry_ = (*entry_)->next();
1665 return entry_ != other.entry_;
1667 const T* operator*() const { return *entry_; }
1670 explicit ConstIterator(T* const* entry) : entry_(entry) {}
1672 T* const* entry_;
1684 tail_ = reset_point.entry_;