Lines Matching defs:const
50 static const int kNone = kMaxInt;
54 static const int kMaxSignificantDigits = 9;
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_); }
255 static int Lookup(const uint32_t* pre, int len);
263 static const int kPrefixLength = 3;
264 static const int kTypeOffset = kPrefixLength;
265 static const int kValueOffset = kTypeOffset + 1;
266 static const int kEntrySize = kValueOffset + 1;
267 static const int8_t array[][kEntrySize];
281 bool IsExpecting(int n) const {
284 bool IsUTC() const { return hour_ == 0 && minute_ == 0; }
297 bool IsEmpty() const { return index_ == 0; }
298 bool IsExpecting(int n) const {
321 static const int kSize = 4;
330 bool IsEmpty() const { return index_ == 0; }
346 static const int kSize = 3;