Home
last modified time | relevance | path

Searched refs:isNum (Results 1 – 3 of 3) 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/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/golang-protobuf/jsonpb/
Djsonpb.go1059 isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64 ||
1062 if isNum && strings.HasPrefix(string(inputValue), `"`) {