Searched refs:WhileLoc (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DStmt.h1007 SourceLocation WhileLoc; member in class:clang::WhileStmt
1039 SourceLocation getWhileLoc() const { return WhileLoc; }
1040 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
1043 return SourceRange(WhileLoc, SubExprs[BODY]->getLocEnd());
1062 SourceLocation WhileLoc; member in class:clang::DoStmt
1068 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1085 SourceLocation getWhileLoc() const { return WhileLoc; }
1086 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
/external/clang/lib/Parse/
H A DParseStmt.cpp1130 SourceLocation WhileLoc = Tok.getLocation(); local
1164 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1193 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
1240 SourceLocation WhileLoc = ConsumeToken(); local
1258 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/external/clang/lib/Sema/
H A DSemaStmt.cpp994 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, argument
1001 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
1015 Body, WhileLoc));
1020 SourceLocation WhileLoc, SourceLocation CondLParen,
1037 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
1019 ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen) argument
H A DTreeTransform.h1094 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, argument
1096 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1104 SourceLocation WhileLoc, SourceLocation LParenLoc,
1106 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1103 RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation LParenLoc, Expr *Cond, SourceLocation RParenLoc) argument
/external/clang/lib/AST/
H A DStmt.cpp773 WhileLoc = WL;
/external/clang/include/clang/Sema/
H A DSema.h2289 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
2293 SourceLocation WhileLoc,

Completed in 109 milliseconds