Searched refs:IsLegalIdentifierStart (Results 1 – 2 of 2) sorted by relevance
52 inline constexpr bool IsLegalIdentifierStart(char ch) { in IsLegalIdentifierStart() function57 return IsLegalIdentifierStart(ch) || IsDecimalDigit(ch); in IsLegalInIdentifier()177 return IsLegalIdentifierStart(ch) || IsDecimalDigit(ch); in IsValidFortranTokenCharacter()
49 static bool IsLegalIdentifierStart(const CharBlock &cpl) { in IsLegalIdentifierStart() function50 return cpl.size() > 0 && IsLegalIdentifierStart(cpl[0]); in IsLegalIdentifierStart()64 if (IsLegalIdentifierStart(tok)) { in Tokenize()264 if (!token.empty() && IsLegalIdentifierStart(token[0]) && in MacroReplacement()275 if (token.IsBlank() || !IsLegalIdentifierStart(token[0])) { in MacroReplacement()420 if (j < tokens && IsLegalIdentifierStart(dir.TokenAt(j)[0])) { in Directive()444 if (an.empty() || !IsLegalIdentifierStart(an[0])) { in Directive()814 } else if (IsLegalIdentifierStart(t[0])) { in ExpressionValue()1057 IsLegalIdentifierStart(expr1.TokenAt(j + 1))) { in IsIfPredicateTrue()