Searched refs:IsAlphabet (Results 1 – 3 of 3) sorted by relevance
95 } else if (IsAlphabet(c) || c == '_') { in ReadToken()153 if (IsAlphabet(c) || c == '_' || IsDecimalDigital(c) || c == '.') { in ReadIdentifier()
90 static bool IsAlphabet(char c) in IsAlphabet() function
55 static inline bool IsAlphabet(char chr) in IsAlphabet() function160 if (!IsNum(str[i]) && !IsAlphabet(str[i])) { in MatchUdidStr()