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

/external/clang/include/clang/AST/
H A DStmt.h1066 SourceLocation DoLoc; member in class:clang::DoStmt
1073 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1088 SourceLocation getDoLoc() const { return DoLoc; }
1089 void setDoLoc(SourceLocation L) { DoLoc = L; }
1097 return SourceRange(DoLoc, RParenLoc);
/external/clang/lib/Parse/
H A DParseStmt.cpp1156 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. local
1189 Diag(DoLoc, diag::note_matching) << "do";
1218 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/external/clang/lib/Sema/
H A DSemaStmt.cpp1144 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, argument
1149 ExprResult CondResult = CheckBooleanCondition(Cond, DoLoc);
1154 CheckImplicitConversions(Cond, DoLoc);
1162 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
H A DTreeTransform.h1104 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, argument
1107 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
/external/clang/include/clang/Sema/
H A DSema.h2525 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,

Completed in 81 milliseconds