Home | History | Annotate | Download | only in heap

Lines Matching refs:index_

20     const_iterator() : index_(0), elements_(NULL) {}
23 : index_(index), elements_(elements) {}
26 return elements_ == rhs.elements_ && index_ == rhs.index_;
30 return elements_ != rhs.elements_ || index_ != rhs.index_;
33 operator const T*() const { return elements_ + index_; }
35 const T* operator->() const { return elements_ + index_; }
37 const T& operator*() const { return elements_[index_]; }
40 index_ = (index_ + 1) % (MAX_SIZE + 1);
45 index_ = (index_ + MAX_SIZE) % (MAX_SIZE + 1);
50 size_t index_;