| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/ |
| 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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 74 ArrayRef<const char *> ArgNames; member 90 ArrayRef<const char *> ArgNames) in ParsedAttrInfo() 96 Spellings(Spellings), ArgNames(ArgNames) {} in ParsedAttrInfo()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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,
|
| H A D | LangImpl02.rst | 585 std::vector<std::string> ArgNames; 587 ArgNames.push_back(IdentifierStr); 594 return std::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | AsmWriterEmitter.cpp | 1007 SmallVector<StringInit *> ArgNames{D->getArgName(0)}; in EmitPrintAliasInstruction() local 1010 ArgNames.push_back(RHS->getArgName(i)); in EmitPrintAliasInstruction() 1012 D = DagInit::get(D->getOperator(), nullptr, Args, ArgNames); in EmitPrintAliasInstruction()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | Record.cpp | 1137 SmallVector<StringInit*, 8> ArgNames; in Fold() local 1140 ArgNames.push_back(LHSs->getArgName(i)); in Fold() 1144 ArgNames.push_back(RHSs->getArgName(i)); in Fold() 1146 return DagInit::get(Op, nullptr, Args, ArgNames); in Fold() 1228 SmallVector<StringInit*, 8> ArgNames; in Fold() local 1231 ArgNames.push_back(Dag->getArgName(i)); in Fold() 1233 return DagInit::get(Op, nullptr, Args, ArgNames); in Fold()
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 4254 std::vector<std::string> ArgNames; in EmitClangAttrParsedAttrImpl() local 4259 ArgNames.push_back(Arg->getValueAsString("Name").str()); in EmitClangAttrParsedAttrImpl() 4262 ArgNames.back().append("..."); in EmitClangAttrParsedAttrImpl() 4267 if (!ArgNames.empty()) { in EmitClangAttrParsedAttrImpl() 4269 for (const auto &N : ArgNames) in EmitClangAttrParsedAttrImpl() 4299 if (!ArgNames.empty()) in EmitClangAttrParsedAttrImpl()
|