Searched refs:isAlnum (Results 1 – 3 of 3) sorted by relevance
56 Name = Text.take_while(llvm::isAlnum); in Annotations()
88 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum() function
139 return isAlnum(c) || c == '_' || c == '$' || c == '.' || in IsIdentifierChar()