| /netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/ |
| H A D | toy.cpp | 330 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 D | toy.cpp | 357 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 D | toy.cpp | 367 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 D | toy-jit.cpp | 562 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 D | toy.cpp | 563 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 D | toy-jit.cpp | 577 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 D | toy.cpp | 584 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 D | toy.cpp | 581 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 D | ExceptionDemo.cpp | 143 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 D | toy.cpp | 655 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 D | toy.cpp | 649 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 D | toy.cpp | 654 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 D | toy.cpp | 649 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 D | toy.cpp | 649 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 D | toy.cpp | 632 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 D | toy.cpp | 561 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 D | toy.cpp | 494 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 D | toy.cpp | 769 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 D | toy.cpp | 603 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 D | reporter_output_test.cc | 192 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl06.rst | 208 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 D | reporter_output_test.cc | 214 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | Record.cpp | 983 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 D | benchmark_register.cc | 323 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 D | benchmark_register.cc | 318 Benchmark* Benchmark::ArgNames(const std::vector<std::string>& names) { in ArgNames() function in benchmark::internal::Benchmark
|