Searched refs:ExpectedTok (Results 1 – 2 of 2) sorted by relevance
103 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) { in IsCommonTypo() argument104 switch (ExpectedTok) { in IsCommonTypo()111 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, in ExpectAndConsume() argument113 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) { in ExpectAndConsume()119 if (IsCommonTypo(ExpectedTok, Tok)) { in ExpectAndConsume()124 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok)); in ExpectAndConsume()126 DB << ExpectedTok; in ExpectAndConsume()128 DB << Msg << ExpectedTok; in ExpectAndConsume()141 Spelling = tok::getPunctuatorSpelling(ExpectedTok); in ExpectAndConsume()148 DB << ExpectedTok; in ExpectAndConsume()[all …]
725 bool ExpectAndConsume(tok::TokenKind ExpectedTok,