Searched refs:IsLetter (Results 1 – 1 of 1) sorted by relevance
53 static bool IsLetter(char c) { in IsLetter() function66 [](char c) { return IsDigit(c) || IsLetter(c) || c == '_' || c == '$'; }); in IsWord()73 static bool IsNumberBodyChar(char ch) { return IsDigit(ch) || IsLetter(ch); } in IsNumberBodyChar()