Home | History | Annotate | Download | only in src

Lines Matching refs:index_

4352   VectorIterator(T* d, int l) : data_(Vector<const T>(d, l)), index_(0) { }
4353 explicit VectorIterator(Vector<const T> data) : data_(data), index_(0) { }
4354 T GetNext() { return data_[index_++]; }
4355 bool has_more() { return index_ < data_.length(); }
4358 int index_;