Home
last modified time | relevance | path

Searched refs:OpTok (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Parse/
DParseExpr.cpp1478 Parser::ParseExprAfterUnaryExprOrTypeTrait(const Token &OpTok, in ParseExprAfterUnaryExprOrTypeTrait() argument
1483 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 …]
DParseDecl.cpp5684 Token OpTok = Tok; in ParseTypeofSpecifier() local
5695 ExprResult Operand = ParseExprAfterUnaryExprOrTypeTrait(OpTok, isCastExpr, in ParseTypeofSpecifier()
/external/llvm/lib/TableGen/
DTGParser.cpp913 tgtok::TokKind OpTok = Lex.getCode(); in ParseOperation() local
920 switch (OpTok) { in ParseOperation()
963 if (OpTok == tgtok::XListConcat) { in ParseOperation()
/external/clang/include/clang/Parse/
DParser.h1366 ExprResult ParseExprAfterUnaryExprOrTypeTrait(const Token &OpTok,