Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1664 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1696 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1726 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h218 SourceLocation DoLoc; variable
2478 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc()
2479 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp1667 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1673 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1678 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1688 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
H A DTreeTransform.h1366 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1369 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h4679 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,