Home | History | Annotate | Download | only in src

Lines Matching refs:ch_

63       ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0;
74 if (i < kMaxSignificantDigits) n = n * 10 + ch_ - '0';
87 if (len < prefix_size) prefix[len] = AsciiAlphaToLower(ch_);
95 if (ch_ == c) {
106 bool Is(uint32_t c) const { return ch_ == c; }
107 bool IsEnd() const { return ch_ == 0; }
108 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
109 bool IsAsciiAlphaOrAbove() const { return ch_ >= 'A'; }
110 bool IsAsciiSign() const { return ch_ == '+' || ch_ == '-'; }
113 int GetAsciiSignValue() const { return 44 - static_cast<int>(ch_); }
118 uint32_t ch_;