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

  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 394 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
408 auto FI = FunctionProtos.find(Name);
409 if (FI != FunctionProtos.end())
490 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
493 FunctionProtos[Proto->getName()] = std::move(Proto);
568 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 518 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
532 auto FI = FunctionProtos.find(Name);
533 if (FI != FunctionProtos.end())
764 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
767 FunctionProtos[Proto->getName()] = std::move(Proto);
842 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 609 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
623 auto FI = FunctionProtos.find(Name);
624 if (FI != FunctionProtos.end())
875 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
878 FunctionProtos[Proto->getName()] = std::move(Proto);
960 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 679 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
693 auto FI = FunctionProtos.find(Name);
694 if (FI != FunctionProtos.end())
1033 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1036 FunctionProtos[Proto->getName()] = std::move(Proto);
1126 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 861 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
875 auto FI = FunctionProtos.find(Name);
876 if (FI != FunctionProtos.end())
    [all...]

Completed in 760 milliseconds