Lines Matching refs:index_
52 : index_(0), in InputReader()
58 int position() { return index_; } in position()
62 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0; in Next()
63 index_++; in Next()
131 int index_;
311 TimeComposer() : index_(0), hour_offset_(kNone) {} in TimeComposer()
312 bool IsEmpty() const { return index_ == 0; } in IsEmpty()
314 return (index_ == 1 && IsMinute(n)) || in IsExpecting()
315 (index_ == 2 && IsSecond(n)) || in IsExpecting()
316 (index_ == 3 && IsMillisecond(n)); in IsExpecting()
319 return index_ < kSize ? (comp_[index_++] = n, true) : false; in Add()
323 while (index_ < kSize) comp_[index_++] = 0; in AddFinal()
339 int index_; variable
345 DayComposer() : index_(0), named_month_(kNone), is_iso_date_(false) {} in DayComposer()
346 bool IsEmpty() const { return index_ == 0; } in IsEmpty()
348 if (index_ < kSize) { in Add()
349 comp_[index_] = n; in Add()
350 index_++; in Add()
364 int index_; variable