Searched refs:AllowAt (Results 1 – 2 of 2) sorted by relevance
717 bool AllowAt = getLexer().getAllowAtInIdentifier(); in parseDirectiveType() local718 if (!AllowAt && in parseDirectiveType()722 make_scope_exit([&]() { getLexer().setAllowAtInIdentifier(AllowAt); }); in parseDirectiveType()
228 static bool isIdentifierChar(char C, bool AllowAt, bool AllowHash) { in isIdentifierChar() argument230 (AllowAt && C == '@') || (AllowHash && C == '#'); in isIdentifierChar()