Searched refs:WhileLoc (Results 1 – 6 of 6) sorted by relevance
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 1037 SourceLocation WhileLoc; variable 1069 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1070 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc() 1072 SourceLocation getLocStart() const LLVM_READONLY { return WhileLoc; } in getLocStart() 1093 SourceLocation WhileLoc; variable 1099 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 1116 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 1117 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1274 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1308 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true)) in ParseWhileStatement() 1311 FullExprArg FullCond(Actions.MakeFullExpr(Cond.get(), WhileLoc)); in ParseWhileStatement() 1336 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get()); in ParseWhileStatement() 1382 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1404 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1228 Sema::ActOnWhileStmt(SourceLocation WhileLoc, FullExprArg Cond, in ActOnWhileStmt() argument 1235 CondResult = CheckConditionVariable(ConditionVar, WhileLoc, true); in ActOnWhileStmt() 1250 WhileStmt(Context, ConditionVar, ConditionExpr, Body, WhileLoc); in ActOnWhileStmt() 1255 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1272 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1172 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()
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | Stmt.cpp | 975 WhileLoc = WL; in WhileStmt()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 3152 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, 3156 SourceLocation WhileLoc,
|