Searched refs:FunctionProtos (Results 1 - 5 of 5) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp394 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable
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/
H A Dtoy.cpp518 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable
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/
H A Dtoy.cpp609 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable
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/
H A Dtoy.cpp679 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable
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);
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp861 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable
875 auto FI = FunctionProtos.find(Name);
876 if (FI != FunctionProtos.end())
1228 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1231 FunctionProtos[Proto->getName()] = std::move(Proto);
1341 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);

Completed in 111 milliseconds