Lines Matching defs:End
175 // Comment until end of line.
184 // Check for end of file. Don't eat the EOF.
315 ExprAST *Start, *End, *Step, *Body;
318 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
320 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
324 End->dump(indent(out, ind) << "End:", ind + 1);
401 } // end anonymous namespace
555 ExprAST *End = ParseExpression();
556 if (End == 0)
576 return new ForExprAST(IdName, Start, End, Step, Body);
606 // End of var list, exit loop.
994 // end of the function.
1105 // Compute the end condition.
1106 Value *EndCond = End->Codegen();
1124 // Insert the conditional branch into the end of LoopEndBB.