Searched refs:WhileLoc (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1008 SourceLocation WhileLoc; variable 1040 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1041 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc() 1043 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; } in getLocStart() 1064 SourceLocation WhileLoc; variable 1070 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 1087 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1088 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1179 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1213 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) in ParseWhileStatement() 1216 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); in ParseWhileStatement() 1242 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); in ParseWhileStatement() 1289 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1313 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1168 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, in ActOnWhileStmt() argument 1175 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true); in ActOnWhileStmt() 1189 Body, WhileLoc)); in ActOnWhileStmt() 1194 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1210 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen)); in ActOnDoStmt()
|
D | TreeTransform.h | 1122 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, Sema::FullExprArg Cond, in RebuildWhileStmt() argument 1124 return getSema().ActOnWhileStmt(WhileLoc, Cond, CondVar, Body); in RebuildWhileStmt() 1132 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1134 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 923 WhileLoc = WL; in WhileStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2831 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, 2835 SourceLocation WhileLoc,
|