Searched refs:DoLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1063 SourceLocation DoLoc; variable 1070 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 1085 SourceLocation getDoLoc() const { return DoLoc; } in getDoLoc() 1086 void setDoLoc(SourceLocation L) { DoLoc = L; } in setDoLoc() 1093 SourceLocation getLocStart() const LLVM_READONLY { return DoLoc; } in getLocStart()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1251 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local 1284 Diag(DoLoc, diag::note_matching) << "do"; in ParseDoStatement() 1313 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1193 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument 1198 ExprResult CondResult = CheckBooleanCondition(Cond, DoLoc); in ActOnDoStmt() 1203 CondResult = ActOnFinishFullExpr(Cond, DoLoc); in ActOnDoStmt() 1210 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen)); in ActOnDoStmt()
|
D | TreeTransform.h | 1131 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument 1134 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2834 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|