Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1103 SourceLocation DoLoc; variable
1112 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt()
1127 SourceLocation getDoLoc() const { return DoLoc; } in getDoLoc()
1128 void setDoLoc(SourceLocation L) { DoLoc = L; } in setDoLoc()
1135 SourceLocation getLocStart() const LLVM_READONLY { return DoLoc; } in getLocStart()
/external/clang/lib/Parse/
DParseStmt.cpp1411 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1443 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1470 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/external/clang/lib/Sema/
DSemaStmt.cpp1257 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1263 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1268 CondResult = ActOnFinishFullExpr(Cond, DoLoc); in ActOnDoStmt()
1275 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
DTreeTransform.h1214 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1217 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/external/clang/include/clang/Sema/
DSema.h3414 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,