Home | History | Annotate | Download | only in src

Lines Matching full:index_

2610         descs_(descs), index_(index) { }
2612 inline PropertyType type() { return descs_->GetType(index_); }
2613 inline Object* GetCallbackObject() { return descs_->GetValue(index_); }
2617 int index_;
7561 VectorIterator(T* d, int l) : data_(Vector<const T>(d, l)), index_(0) { }
7562 explicit VectorIterator(Vector<const T> data) : data_(data), index_(0) { }
7563 T GetNext() { return data_[index_++]; }
7564 bool has_more() { return index_ < data_.length(); }
7567 int index_;