Home
last modified time | relevance | path

Searched refs:ArgNames (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp330 std::vector<std::string> ArgNames; in ParsePrototype() local
332 ArgNames.push_back(IdentifierStr); in ParsePrototype()
339 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp357 std::vector<std::string> ArgNames; in ParsePrototype() local
359 ArgNames.push_back(IdentifierStr); in ParsePrototype()
366 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp367 std::vector<std::string> ArgNames; in ParsePrototype() local
369 ArgNames.push_back(IdentifierStr); in ParsePrototype()
376 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp562 std::vector<std::string> ArgNames; in ParsePrototype() local
564 ArgNames.push_back(IdentifierStr); in ParsePrototype()
572 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
H A Dtoy.cpp563 std::vector<std::string> ArgNames; in ParsePrototype() local
565 ArgNames.push_back(IdentifierStr); in ParsePrototype()
573 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp577 std::vector<std::string> ArgNames; in ParsePrototype() local
579 ArgNames.push_back(IdentifierStr); in ParsePrototype()
587 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
590 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
H A Dtoy.cpp584 std::vector<std::string> ArgNames; in ParsePrototype() local
586 ArgNames.push_back(IdentifierStr); in ParsePrototype()
594 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
597 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp581 std::vector<std::string> ArgNames; in ParsePrototype() local
583 ArgNames.push_back(IdentifierStr); in ParsePrototype()
591 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
594 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp143 typedef std::vector<std::string> ArgNames; typedef
165 const ArgNames &theArgNames, in createFunction()
1087 ArgNames argNames; in createCatchWrappedInvokeFunction()
1349 ArgNames unwindArgNames; in createThrowExceptionFunction()
1690 ArgNames argNames; in createStandardUtilityFunctions()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp655 std::vector<std::string> ArgNames; in ParsePrototype() local
657 ArgNames.push_back(IdentifierStr); in ParsePrototype()
665 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
668 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp649 std::vector<std::string> ArgNames; in ParsePrototype() local
651 ArgNames.push_back(IdentifierStr); in ParsePrototype()
659 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp654 std::vector<std::string> ArgNames; in ParsePrototype() local
656 ArgNames.push_back(IdentifierStr); in ParsePrototype()
664 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
667 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp649 std::vector<std::string> ArgNames; in ParsePrototype() local
651 ArgNames.push_back(IdentifierStr); in ParsePrototype()
659 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp649 std::vector<std::string> ArgNames; in ParsePrototype() local
651 ArgNames.push_back(IdentifierStr); in ParsePrototype()
659 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
662 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp632 std::vector<std::string> ArgNames; in ParsePrototype() local
634 ArgNames.push_back(IdentifierStr); in ParsePrototype()
642 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
645 return std::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp561 std::vector<std::string> ArgNames; in ParsePrototype() local
563 ArgNames.push_back(IdentifierStr); in ParsePrototype()
571 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp494 std::vector<std::string> ArgNames; in ParsePrototype() local
496 ArgNames.push_back(IdentifierStr); in ParsePrototype()
503 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp769 std::vector<std::string> ArgNames; in ParsePrototype() local
771 ArgNames.push_back(IdentifierStr); in ParsePrototype()
779 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
782 return std::make_unique<PrototypeAST>(FnLoc, FnName, ArgNames, Kind != 0, in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp603 std::vector<std::string> ArgNames; in ParsePrototype() local
605 ArgNames.push_back(IdentifierStr); in ParsePrototype()
613 if (Kind && ArgNames.size() != Kind) in ParsePrototype()
616 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
H A Dreporter_output_test.cc192 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl06.rst208 std::vector<std::string> ArgNames;
210 ArgNames.push_back(IdentifierStr);
218 if (Kind && ArgNames.size() != Kind)
221 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Dreporter_output_test.cc214 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp983 SmallVector<StringInit*, 8> ArgNames; in Fold() local
986 ArgNames.push_back(LHSs->getArgName(i)); in Fold()
990 ArgNames.push_back(RHSs->getArgName(i)); in Fold()
992 return DagInit::get(Op, nullptr, Args, ArgNames); in Fold()
1097 SmallVector<StringInit*, 8> ArgNames; in Fold() local
1100 ArgNames.push_back(Dag->getArgName(i)); in Fold()
1102 return DagInit::get(Op, nullptr, Args, ArgNames); in Fold()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dbenchmark_register.cc323 Benchmark* Benchmark::ArgNames(const std::vector<std::string>& names) { in ArgNames() function in benchmark::internal::Benchmark
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dbenchmark_register.cc318 Benchmark* Benchmark::ArgNames(const std::vector<std::string>& names) { in ArgNames() function in benchmark::internal::Benchmark

12