Searched refs:ParsedStmtContext (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 41 ParsedStmtContext StmtCtx) { in ParseStatement() 105 ParsedStmtContext StmtCtx, in ParseStatementOrDeclaration() 176 StmtVector &Stmts, ParsedStmtContext StmtCtx, in ParseStatementOrDeclarationAfterAttributes() 251 (StmtCtx & ParsedStmtContext::AllowDeclarationsInC) != in ParseStatementOrDeclarationAfterAttributes() 252 ParsedStmtContext()) && in ParseStatementOrDeclarationAfterAttributes() 547 StmtResult Parser::ParseExprStatement(ParsedStmtContext StmtCtx) { in ParseExprStatement() 743 ParsedStmtContext StmtCtx) { in ParseLabeledStatement() 750 StmtCtx &= ~ParsedStmtContext::AllowStandaloneOpenMPDirectives; in ParseLabeledStatement() 815 StmtResult Parser::ParseCaseStatement(ParsedStmtContext StmtCtx, in ParseCaseStatement() 822 StmtCtx &= ~ParsedStmtContext::AllowStandaloneOpenMPDirectives; in ParseCaseStatement() [all …]
|
H A D | ParseOpenMP.cpp | 2398 ParsedStmtContext StmtCtx, OpenMPDirectiveKind DKind, SourceLocation Loc, in ParseOpenMPExecutableDirective() 2411 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) == in ParseOpenMPExecutableDirective() 2412 ParsedStmtContext()) { in ParseOpenMPExecutableDirective() 2521 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) == in ParseOpenMPExecutableDirective() 2522 ParsedStmtContext()) { in ParseOpenMPExecutableDirective() 2616 ParsedStmtContext StmtCtx, bool ReadDirectiveWithinMetadirective) { in ParseOpenMPDeclarativeOrExecutableDirective() 2804 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) == in ParseOpenMPDeclarativeOrExecutableDirective() 2805 ParsedStmtContext()) { in ParseOpenMPDeclarativeOrExecutableDirective() 2823 if ((StmtCtx & ParsedStmtContext::AllowStandaloneOpenMPDirectives) == in ParseOpenMPDeclarativeOrExecutableDirective() 2824 ParsedStmtContext()) { in ParseOpenMPDeclarativeOrExecutableDirective()
|
H A D | ParseObjc.cpp | 2799 ParsedStmtContext StmtCtx) { in ParseObjCAtStatement()
|
H A D | ParseDecl.cpp | 5967 ParsedStmtContext SubStmtCtx = ParsedStmtContext(); in ParseTopLevelStmtDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 469 enum class ParsedStmtContext { enum 489 StmtResult handleExprStmt(ExprResult E, ParsedStmtContext StmtCtx); 2169 ParsedStmtContext StmtCtx = ParsedStmtContext::SubStmt); 2171 StmtVector &Stmts, ParsedStmtContext StmtCtx, 2174 StmtVector &Stmts, ParsedStmtContext StmtCtx, 2177 StmtResult ParseExprStatement(ParsedStmtContext StmtCtx); 2179 ParsedStmtContext StmtCtx); 2180 StmtResult ParseCaseStatement(ParsedStmtContext StmtCtx, 2183 StmtResult ParseDefaultStatement(ParsedStmtContext StmtCtx); 2207 StmtResult ParsePragmaLoopHint(StmtVector &Stmts, ParsedStmtContext StmtCtx, [all …]
|