Searched refs:ExpectedTok (Results 1 – 2 of 2) sorted by relevance
102 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) { in IsCommonTypo() argument103 switch (ExpectedTok) { in IsCommonTypo()110 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, in ExpectAndConsume() argument112 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) { in ExpectAndConsume()118 if (IsCommonTypo(ExpectedTok, Tok)) { in ExpectAndConsume()123 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok)); in ExpectAndConsume()125 DB << ExpectedTok; in ExpectAndConsume()127 DB << Msg << ExpectedTok; in ExpectAndConsume()140 Spelling = tok::getPunctuatorSpelling(ExpectedTok); in ExpectAndConsume()147 DB << ExpectedTok; in ExpectAndConsume()[all …]
1038 bool ExpectAndConsume(tok::TokenKind ExpectedTok,