Home | History | Annotate | Download | only in src

Lines Matching refs:VectorIterator

9281 class VectorIterator {
9283 VectorIterator(T* d, int l) : data_(Vector<const T>(d, l)), index_(0) { }
9284 explicit VectorIterator(Vector<const T> data) : data_(data), index_(0) { }