Searched refs:isNum (Results 1 – 6 of 6) sorted by relevance
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()
39 …bool get isNum => ValueTypeUtils.isNumber(_valueType) || ValueTypeUtils.isIndirectNumber(_valueTyp…43 bool get isInt => isNum && !isDouble;
149864 int isNum;149866 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8);149867 if( isNum<=0 ){149869 isNum = +1;149872 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8);149876 if( isNum>0 ){