Lines Matching defs:Step
176 ExprAST *Start, *End, *Step, *Body;
179 ExprAST *step, ExprAST *body)
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
371 // The step value is optional.
372 ExprAST *Step = 0;
375 Step = ParseExpression();
376 if (Step == 0) return 0;
386 return new ForExprAST(IdName, Start, End, Step, Body);
1024 // step = stepexpr
1028 // nextvar = curvar + step
1066 // Emit the step value.
1068 if (Step) {
1069 StepVal = Step->Codegen();