Searched refs:isNum (Results 1 – 10 of 10) sorted by relevance
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | Lexer.java | 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 …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/tools/sva/src/ |
D | lexer.js | 91 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]))
|
/external/deqp-deps/SPIRV-Tools/tools/sva/src/ |
D | lexer.js | 91 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]))
|
/external/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
D | lexer.js | 91 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]))
|
/external/deqp/framework/opengl/ |
D | gluVarTypeUtil.cpp | 47 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()
|
/external/perfetto/ui/src/common/ |
D | query_iterator.ts | 124 const isNum = columnType === NUM || columnType === NUM_NULL; constant 126 if (isNum && column.longValues && 130 if (isNum && column.doubleValues &&
|
/external/golang-protobuf/jsonpb/ |
D | jsonpb.go | 1078 isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64 || 1081 if isNum && strings.HasPrefix(string(inputValue), `"`) {
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 144264 int isNum; 144266 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 144267 if( isNum<=0 ){ 144269 isNum = +1; 144272 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 144276 if( isNum>0 ){
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 143604 int isNum; 143606 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 143607 if( isNum<=0 ){ 143609 isNum = +1; 143612 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 143616 if( isNum>0 ){
|
/external/sqlite/dist/ |
D | sqlite3.c | 143620 int isNum; 143622 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 143623 if( isNum<=0 ){ 143625 isNum = +1; 143628 isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); 143632 if( isNum>0 ){
|