Lines Matching full:index_
2760 int index_;
2988 descs_(descs), index_(index) { }
2995 int index_;
9364 VectorIterator(T* d, int l) : data_(Vector<const T>(d, l)), index_(0) { }
9365 explicit VectorIterator(Vector<const T> data) : data_(data), index_(0) { }
9366 T GetNext() { return data_[index_++]; }
9367 bool has_more() { return index_ < data_.length(); }
9370 int index_;