Lines Matching defs:Step
199 ExprAST *Start, *End, *Step, *Body;
202 ExprAST *step, ExprAST *body)
203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
394 // The step value is optional.
395 ExprAST *Step = 0;
398 Step = ParseExpression();
399 if (Step == 0) return 0;
409 return new ForExprAST(IdName, Start, End, Step, Body);
1166 // step = stepexpr
1170 // nextvar = curvar + step
1208 // Emit the step value.
1210 if (Step) {
1211 StepVal = Step->Codegen();