Home
last modified time | relevance | path

Searched refs:DoLoc (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1783 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 DSemaOpenACC.cpp968 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 DSemaStmt.cpp1830 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 DTreeTransform.h1452 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 DStmt.h256 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 DSemaOpenACC.h751 void ActOnDoStmt(SourceLocation DoLoc);
H A DSema.h10954 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,