Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/
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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DParsedAttr.h74 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 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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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,
H A DLangImpl02.rst585 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 DAsmWriterEmitter.cpp1007 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 DRecord.cpp1137 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 DClangAttrEmitter.cpp4254 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()

12