Home
last modified time | relevance | path

Searched refs:ExpectedTok (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Parse/
DParser.cpp103 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) { in IsCommonTypo() argument
104 switch (ExpectedTok) { in IsCommonTypo()
111 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, in ExpectAndConsume() argument
113 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 …]
/external/clang/include/clang/Parse/
DParser.h725 bool ExpectAndConsume(tok::TokenKind ExpectedTok,