Home
last modified time | relevance | path

Searched refs:ring_ (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/base/task/sequence_manager/
Dlazily_deallocated_deque.h310 const T& operator->() const { return ring_->data_[index_]; }
311 const T& operator*() const { return ring_->data_[index_]; }
314 if (index_ == ring_->back_index_) {
315 ring_ = ring_->next_.get();
318 index_ = ring_->CircularIncrement(index_);
323 operator bool() const { return !!ring_; }
328 ring_ = nullptr; in Iterator()
333 ring_ = ring; in Iterator()
334 index_ = ring_->CircularIncrement(ring->front_index_); in Iterator()
337 const Ring* ring_; variable