Searched refs:OpTok (Results 1 – 4 of 4) sorted by relevance
1478 Parser::ParseExprAfterUnaryExprOrTypeTrait(const Token &OpTok, in ParseExprAfterUnaryExprOrTypeTrait() argument1483 assert((OpTok.is(tok::kw_typeof) || OpTok.is(tok::kw_sizeof) || in ParseExprAfterUnaryExprOrTypeTrait()1484 OpTok.is(tok::kw___alignof) || OpTok.is(tok::kw_alignof) || in ParseExprAfterUnaryExprOrTypeTrait()1485 OpTok.is(tok::kw__Alignof) || OpTok.is(tok::kw_vec_step)) && in ParseExprAfterUnaryExprOrTypeTrait()1494 if (OpTok.is(tok::kw_sizeof) || OpTok.is(tok::kw___alignof) || in ParseExprAfterUnaryExprOrTypeTrait()1495 OpTok.is(tok::kw_alignof) || OpTok.is(tok::kw__Alignof)) { in ParseExprAfterUnaryExprOrTypeTrait()1502 SourceLocation LParenLoc = PP.getLocForEndOfToken(OpTok.getLocation()); in ParseExprAfterUnaryExprOrTypeTrait()1505 << OpTok.getName() in ParseExprAfterUnaryExprOrTypeTrait()1514 if (OpTok.is(tok::kw_typeof) && !getLangOpts().CPlusPlus) { in ParseExprAfterUnaryExprOrTypeTrait()1515 Diag(Tok, diag::err_expected_after) << OpTok.getIdentifierInfo() in ParseExprAfterUnaryExprOrTypeTrait()[all …]
5684 Token OpTok = Tok; in ParseTypeofSpecifier() local5695 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr, in ParseTypeofSpecifier()
913 tgtok::TokKind OpTok = Lex.getCode(); in ParseOperation() local920 switch (OpTok) { in ParseOperation()963 if (OpTok == tgtok::XListConcat) { in ParseOperation()
1366 ExprResult ParseExprAfterUnaryExprOrTypeTrait(const Token &OpTok,