Searched refs:DoLoc (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1783 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local 1798 getActions().OpenACC().ActOnDoStmt(DoLoc); in ParseDoStatement() 1820 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement() 1855 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenACC.cpp | 968 void SemaOpenACC::ActOnDoStmt(SourceLocation DoLoc) { in ActOnDoStmt() argument 976 Diag(DoLoc, diag::err_acc_invalid_in_loop) in ActOnDoStmt() 990 Diag(DoLoc, diag::err_acc_invalid_in_loop) in ActOnDoStmt()
|
| H A D | SemaStmt.cpp | 1830 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument 1836 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt() 1841 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt() 1860 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1452 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument 1455 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 256 SourceLocation DoLoc; 2864 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } 2865 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; }
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaOpenACC.h | 751 void ActOnDoStmt(SourceLocation DoLoc);
|
| H A D | Sema.h | 10954 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|