Lines Matching full:index_
3288 descs_(descs), index_(index) { }
3290 inline PropertyType type() { return descs_->GetType(index_); }
3291 inline Object* GetCallbackObject() { return descs_->GetValue(index_); }
3295 int index_;
8868 VectorIterator(T* d, int l) : data_(Vector<const T>(d, l)), index_(0) { }
8869 explicit VectorIterator(Vector<const T> data) : data_(data), index_(0) { }
8870 T GetNext() { return data_[index_++]; }
8871 bool has_more() { return index_ < data_.length(); }
8874 int index_;