Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1034 SourceLocation WhileLoc; variable
1068 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc()
1069 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
1071 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; } in getLocStart()
1092 SourceLocation WhileLoc; variable
1098 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt()
1115 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc()
1116 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
/external/clang/lib/Parse/
DParseStmt.cpp1289 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local
1323 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) in ParseWhileStatement()
1326 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); in ParseWhileStatement()
1351 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); in ParseWhileStatement()
1397 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local
1419 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/external/clang/lib/Sema/
DSemaStmt.cpp1224 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, in ActOnWhileStmt() argument
1231 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true); in ActOnWhileStmt()
1246 WhileStmt(Context, ConditionVar, ConditionExpr, Body, WhileLoc); in ActOnWhileStmt()
1251 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument
1268 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
DTreeTransform.h1172 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, in RebuildWhileStmt() argument
1174 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body); in RebuildWhileStmt()
1182 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument
1184 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/external/clang/lib/AST/
DStmt.cpp980 WhileLoc = WL; in WhileStmt()
/external/clang/include/clang/Sema/
DSema.h3096 StmtResult ActOnWhileStmt(SourceLocation WhileLoc,
3100 SourceLocation WhileLoc,