Lines Matching defs:ch_
68 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0;
79 while (ch_ == '0') Next();
82 if (i < kMaxSignificantDigits) n = n * 10 + ch_ - '0';
96 if (len < prefix_size) prefix[len] = AsciiAlphaToLower(ch_);
104 if (ch_ == c) {
115 bool Is(uint32_t c) const { return ch_ == c; }
116 bool IsEnd() const { return ch_ == 0; }
117 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
118 bool IsAsciiAlphaOrAbove() const { return ch_ >= 'A'; }
119 bool IsWhiteSpaceChar() const { return IsWhiteSpace(ch_); }
120 bool IsAsciiSign() const { return ch_ == '+' || ch_ == '-'; }
123 int GetAsciiSignValue() const { return 44 - static_cast<int>(ch_); }
128 uint32_t ch_;