Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DLexer.java131 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/deqp-deps/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]))
/external/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]))
/external/deqp/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()
/external/perfetto/ui/src/common/
Dquery_iterator.ts124 const isNum = columnType === NUM || columnType === NUM_NULL; constant
126 if (isNum && column.longValues &&
130 if (isNum && column.doubleValues &&
/external/golang-protobuf/jsonpb/
Djsonpb.go1078 isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64 ||
1081 if isNum && strings.HasPrefix(string(inputValue), `"`) {