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

/external/clang/lib/Parse/
H A DParseStmt.cpp1299 SourceLocation WhileLoc = Tok.getLocation(); local
1333 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1336 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
1361 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
1407 SourceLocation WhileLoc = ConsumeToken(); local
1429 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/external/clang/include/clang/AST/
H A DStmt.h1026 SourceLocation WhileLoc; member in class:clang::WhileStmt
1060 SourceLocation getWhileLoc() const { return WhileLoc; }
1061 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
1063 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; }
1084 SourceLocation WhileLoc; member in class:clang::DoStmt
1090 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1107 SourceLocation getWhileLoc() const { return WhileLoc; }
1108 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp1225 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, argument
1232 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
1233 CondResult = ActOnFinishFullExpr(CondResult.get(), WhileLoc);
1248 WhileStmt(Context, ConditionVar, ConditionExpr, Body, WhileLoc);
1253 SourceLocation WhileLoc, SourceLocation CondLParen,
1270 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
1252 ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen) argument
H A DTreeTransform.h1193 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, argument
1195 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1203 SourceLocation WhileLoc, SourceLocation LParenLoc,
1205 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1202 RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation LParenLoc, Expr *Cond, SourceLocation RParenLoc) argument
/external/clang/lib/AST/
H A DStmt.cpp857 WhileLoc = WL;
/external/clang/include/clang/Sema/
H A DSema.h3325 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
3329 SourceLocation WhileLoc,

Completed in 209 milliseconds