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

/external/clang/include/clang/AST/
H A DStmt.h1012 SourceLocation WhileLoc; member in class:clang::WhileStmt
1044 SourceLocation getWhileLoc() const { return WhileLoc; }
1045 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
1048 return SourceRange(WhileLoc, SubExprs[BODY]->getLocEnd());
1067 SourceLocation WhileLoc; member in class:clang::DoStmt
1073 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1090 SourceLocation getWhileLoc() const { return WhileLoc; }
1091 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
/external/clang/lib/Parse/
H A DParseStmt.cpp1084 SourceLocation WhileLoc = Tok.getLocation(); local
1118 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1121 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
1147 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
1194 SourceLocation WhileLoc = ConsumeToken(); local
1218 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/external/clang/lib/Sema/
H A DSemaStmt.cpp1119 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, argument
1126 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
1140 Body, WhileLoc));
1145 SourceLocation WhileLoc, SourceLocation CondLParen,
1162 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
1144 ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen) argument
H A DTreeTransform.h1095 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, argument
1097 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1105 SourceLocation WhileLoc, SourceLocation LParenLoc,
1107 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1104 RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation LParenLoc, Expr *Cond, SourceLocation RParenLoc) argument
/external/clang/lib/AST/
H A DStmt.cpp943 WhileLoc = WL;
/external/clang/include/clang/Sema/
H A DSema.h2522 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
2526 SourceLocation WhileLoc,

Completed in 155 milliseconds