Home | History | Annotate | Download | only in src

Lines Matching refs:index_

71         : index_(0),
79 void Next() { ch_ = (index_ < buffer_.length()) ? buffer_[index_++] : 0; }
157 int index_;
211 TimeComposer() : index_(0), hour_offset_(kNone) {}
212 bool IsEmpty() const { return index_ == 0; }
214 return (index_ == 1 && IsMinute(n)) ||
215 (index_ == 2 && IsSecond(n)) ||
216 (index_ == 3 && IsMillisecond(n));
219 return index_ < kSize ? (comp_[index_++] = n, true) : false;
223 while (index_ < kSize) comp_[index_++] = 0;
238 int index_;
244 DayComposer() : index_(0), named_month_(kNone) {}
245 bool IsEmpty() const { return index_ == 0; }
247 return index_ < kSize ? (comp_[index_++] = n, true) : false;
257 int index_;