HomeSort by relevance Sort by last modified time
    Searched refs:PrototypeAST (Results 1 - 6 of 6) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 116 /// PrototypeAST - This class represents the "prototype" for a function,
119 class PrototypeAST {
123 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
130 PrototypeAST *Proto;
133 FunctionAST(PrototypeAST *proto, ExprAST *body)
167 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
283 static PrototypeAST *ParsePrototype() {
302 return new PrototypeAST(FnName, ArgNames);
308 PrototypeAST *Proto = ParsePrototype();
320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 126 /// PrototypeAST - This class represents the "prototype" for a function,
129 class PrototypeAST {
133 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
141 PrototypeAST *Proto;
144 FunctionAST(PrototypeAST *proto, ExprAST *body)
179 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
295 static PrototypeAST *ParsePrototype() {
314 return new PrototypeAST(FnName, ArgNames);
320 PrototypeAST *Proto = ParsePrototype();
332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 133 /// PrototypeAST - This class represents the "prototype" for a function,
136 class PrototypeAST {
140 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
148 PrototypeAST *Proto;
151 FunctionAST(PrototypeAST *proto, ExprAST *body)
186 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
302 static PrototypeAST *ParsePrototype() {
321 return new PrototypeAST(FnName, ArgNames);
327 PrototypeAST *Proto = ParsePrototype();
339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 162 /// PrototypeAST - This class represents the "prototype" for a function,
165 class PrototypeAST {
169 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
177 PrototypeAST *Proto;
180 FunctionAST(PrototypeAST *proto, ExprAST *body)
215 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
403 static PrototypeAST *ParsePrototype() {
422 return new PrototypeAST(FnName, ArgNames);
428 PrototypeAST *Proto = ParsePrototype();
440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 177 /// PrototypeAST - This class represents the "prototype" for a function,
180 class PrototypeAST {
186 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
205 PrototypeAST *Proto;
208 FunctionAST(PrototypeAST *proto, ExprAST *body)
243 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
449 static PrototypeAST *ParsePrototype() {
507 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
513 PrototypeAST *Proto = ParsePrototype();
525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 194 /// PrototypeAST - This class represents the "prototype" for a function,
196 class PrototypeAST {
202 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
223 PrototypeAST *Proto;
226 FunctionAST(PrototypeAST *proto, ExprAST *body)
261 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
514 static PrototypeAST *ParsePrototype() {
572 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
578 PrototypeAST *Proto = ParsePrototype();
590 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>())
    [all...]

Completed in 47 milliseconds