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

/external/clang/lib/Parse/
H A DParseStmt.cpp1275 SourceLocation WhileLoc = Tok.getLocation(); local
1309 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1312 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc));
1337 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());
1383 SourceLocation WhileLoc = ConsumeToken(); local
1405 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(),
/external/clang/include/clang/AST/
H A DStmt.h1032 SourceLocation WhileLoc; member in class:clang::WhileStmt
1064 SourceLocation getWhileLoc() const { return WhileLoc; }
1065 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
1067 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; }
1088 SourceLocation WhileLoc; member in class:clang::DoStmt
1094 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
1111 SourceLocation getWhileLoc() const { return WhileLoc; }
1112 void setWhileLoc(SourceLocation L) { WhileLoc = L; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp1205 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, argument
1212 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true);
1227 WhileStmt(Context, ConditionVar, ConditionExpr, Body, WhileLoc);
1232 SourceLocation WhileLoc, SourceLocation CondLParen,
1249 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
1231 ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation CondLParen, Expr *Cond, SourceLocation CondRParen) argument
H A DTreeTransform.h1145 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, argument
1147 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body);
1155 SourceLocation WhileLoc, SourceLocation LParenLoc,
1157 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc,
1154 RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, SourceLocation WhileLoc, SourceLocation LParenLoc, Expr *Cond, SourceLocation RParenLoc) argument
/external/clang/lib/AST/
H A DStmt.cpp921 WhileLoc = WL;
/external/clang/include/clang/Sema/
H A DSema.h3029 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
3033 SourceLocation WhileLoc,

Completed in 109 milliseconds