Searched refs:WhileLoc (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1048 SourceLocation WhileLoc; variable 1082 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1083 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc() 1085 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; } in getLocStart() 1106 SourceLocation WhileLoc; variable 1112 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 1129 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1130 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1342 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1375 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1402 return Actions.ActOnWhileStmt(WhileLoc, Cond, Body.get()); in ParseWhileStatement() 1448 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1470 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1235 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, ConditionResult Cond, in ActOnWhileStmt() argument 1253 WhileStmt(Context, CondVal.first, CondVal.second, Body, WhileLoc); in ActOnWhileStmt() 1258 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1275 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
D | TreeTransform.h | 1205 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, in RebuildWhileStmt() argument 1207 return getSema().ActOnWhileStmt(WhileLoc, Cond, Body); in RebuildWhileStmt() 1215 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1217 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 868 WhileLoc = WL; in WhileStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3412 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, ConditionResult Cond, 3415 SourceLocation WhileLoc, SourceLocation CondLParen,
|