Lines Matching refs:index_
53 : index_(0), in InputReader()
59 int position() { return index_; } in position()
63 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0; in Next()
64 index_++; in Next()
116 int index_;
296 TimeComposer() : index_(0), hour_offset_(kNone) {} in TimeComposer()
297 bool IsEmpty() const { return index_ == 0; } in IsEmpty()
299 return (index_ == 1 && IsMinute(n)) || in IsExpecting()
300 (index_ == 2 && IsSecond(n)) || in IsExpecting()
301 (index_ == 3 && IsMillisecond(n)); in IsExpecting()
304 return index_ < kSize ? (comp_[index_++] = n, true) : false; in Add()
308 while (index_ < kSize) comp_[index_++] = 0; in AddFinal()
324 int index_; variable
330 DayComposer() : index_(0), named_month_(kNone), is_iso_date_(false) {} in DayComposer()
331 bool IsEmpty() const { return index_ == 0; } in IsEmpty()
333 if (index_ < kSize) { in Add()
334 comp_[index_] = n; in Add()
335 index_++; in Add()
349 int index_; variable