Searched refs:DoLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1066 SourceLocation DoLoc; variable 1073 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 1088 SourceLocation getDoLoc() const { return DoLoc; } in getDoLoc() 1089 void setDoLoc(SourceLocation L) { DoLoc = L; } in setDoLoc() 1097 return SourceRange(DoLoc, RParenLoc); in getSourceRange()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1156 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local 1189 Diag(DoLoc, diag::note_matching) << "do"; in ParseDoStatement() 1218 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1144 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument 1149 ExprResult CondResult = CheckBooleanCondition(Cond, DoLoc); in ActOnDoStmt() 1154 CheckImplicitConversions(Cond, DoLoc); in ActOnDoStmt() 1162 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen)); in ActOnDoStmt()
|
D | TreeTransform.h | 1104 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument 1107 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2525 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|