Lines Matching full:static
51 static bool Parse(Vector<Char> str, FixedArray* output, UnicodeCache* cache);
59 static inline bool Between(int x, int lo, int hi) {
64 static const int kNone = kMaxInt;
68 static const int kMaxSignificantDigits = 9;
215 static DateToken Keyword(KeywordType tag, int value, int length) {
218 static DateToken Number(int value, int length) {
221 static DateToken Symbol(char symbol) {
224 static DateToken EndOfInput() {
227 static DateToken WhiteSpace(int length) {
230 static DateToken Unknown() {
233 static DateToken Invalid() {
286 static int ReadMilliseconds(DateToken number);
294 static int Lookup(const uint32_t* pre, int len);
296 static KeywordType GetType(int i) {
300 static int GetValue(int i) { return array[i][kValueOffset]; }
302 static const int kPrefixLength = 3;
303 static const int kTypeOffset = kPrefixLength;
304 static const int kValueOffset = kTypeOffset + 1;
305 static const int kEntrySize = kValueOffset + 1;
306 static const int8_t array[][kEntrySize];
352 static bool IsMinute(int x) { return Between(x, 0, 59); }
353 static bool IsHour(int x) { return Between(x, 0, 23); }
354 static bool IsSecond(int x) { return Between(x, 0, 59); }
357 static bool IsHour12(int x) { return Between(x, 0, 12); }
358 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
360 static const int kSize = 4;
381 static bool IsMonth(int x) { return Between(x, 1, 12); }
382 static bool IsDay(int x) { return Between(x, 1, 31); }
385 static const int kSize = 3;
399 static DateParser::DateToken ParseES5DateTime(