Home
last modified time | relevance | path

Searched refs:isNum (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dlexer.js91 isNum(ch) { method in Lexer
100 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]))
/third_party/spirv-tools/tools/sva/src/
Dlexer.js91 isNum(ch) { method in Lexer
100 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]))
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dlexer.js91 isNum(ch) { method in Lexer
100 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]))
/third_party/vk-gl-cts/framework/opengl/
DgluVarTypeUtil.cpp47 static inline bool isNum (char c) { return de::inRange(c, '0', '9'); } in isNum() function
49 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()
/third_party/flatbuffers/dart/lib/src/
Dreference.dart39 …bool get isNum => ValueTypeUtils.isNumber(_valueType) || ValueTypeUtils.isIndirectNumber(_valueTyp…
43 bool get isInt => isNum && !isDouble;
/third_party/sqlite/src/
Dsqlite3.c149864 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 ){