Home | History | Annotate | Download | only in src

Lines Matching refs:index_

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