Home | History | Annotate | Download | only in src

Lines Matching refs:index_

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