Searched refs:isNum (Results 1 – 6 of 6) sorted by relevance
131 boolean isNum = false; in tokenize()148 isNum = false; in tokenize()182 isNum = false; in tokenize()218 isNum = false; in tokenize()241 if (!(isNum || (startSubstring == -1))) in tokenize()246 isNum = false; in tokenize()268 isNum = false; in tokenize()328 isNum = false; in tokenize()348 isNum = Character.isDigit(c); in tokenize()350 else if (isNum) in tokenize()[all …]
91 isNum(ch) { method in Lexer100 return this.isNum(ch) || this.isAlpha(ch);152 while (end < this.len_ && this.isNum(this.input_[end]))160 while (end < this.len_ && this.isNum(this.input_[end]))213 if (end >= this.len_ || !this.isNum(this.input_[end]))216 while (end < this.len_ && this.isNum(this.input_[end]))
47 static inline bool isNum (char c) { return de::inRange(c, '0', '9'); } in isNum() function49 static inline bool isIdentifierChar (char c) { return isAlpha(c) || isNum(c) || c == '_'; } in isIdentifierChar()67 else if (isNum(m_str[m_tokenStart])) in advance()70 while (isNum(m_str[m_tokenStart+m_tokenLen])) in advance()
124 const isNum = columnType === NUM || columnType === NUM_NULL; constant126 if (isNum && column.longValues &&130 if (isNum && column.doubleValues &&
1078 isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64 ||1081 if isNum && strings.HasPrefix(string(inputValue), `"`) {