Home | History | Annotate | Download | only in Sema

Lines Matching defs:IterationVar

2855       VarDecl *IterationVar
2860 IndexVariables.push_back(IterationVar);
2864 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
8273 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
8280 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
8285 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
8291 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);