/external/clang/lib/Edit/ |
D | EditedSource.cpp | 48 auto &ArgNames = ExpansionToArgMap[ExpLoc.getRawEncoding()]; in finishedCommit() local 49 if (std::find(ArgNames.begin(), ArgNames.end(), II) == ArgNames.end()) { in finishedCommit() 50 ArgNames.push_back(II); in finishedCommit()
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 335 std::vector<std::string> ArgNames; in ParsePrototype() local 337 ArgNames.push_back(IdentifierStr); in ParsePrototype() 344 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 338 std::vector<std::string> ArgNames; in ParsePrototype() local 340 ArgNames.push_back(IdentifierStr); in ParsePrototype() 347 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 344 std::vector<std::string> ArgNames; in ParsePrototype() local 346 ArgNames.push_back(IdentifierStr); in ParsePrototype() 353 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/include/llvm/TableGen/ |
D | Record.h | 1034 std::vector<std::string> ArgNames; variable 1041 ArgNames(NameRange.begin(), NameRange.end()) {} in DagInit() 1071 assert(Num < ArgNames.size() && "Arg number out of range!"); in getArgName() 1072 return ArgNames[Num]; in getArgName() 1088 inline const_name_iterator name_begin() const { return ArgNames.begin(); } in name_begin() 1089 inline const_name_iterator name_end () const { return ArgNames.end(); } in name_end() 1091 inline size_t name_size () const { return ArgNames.size(); } in name_size() 1092 inline bool name_empty() const { return ArgNames.empty(); } in name_empty()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
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()
|
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()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
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()
|
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()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 554 std::vector<std::string> ArgNames; in ParsePrototype() local 556 ArgNames.push_back(IdentifierStr); in ParsePrototype() 564 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 567 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 762 std::vector<std::string> ArgNames; in Fold() local 765 ArgNames.push_back(LHSs->getArgName(i)); in Fold() 769 ArgNames.push_back(RHSs->getArgName(i)); in Fold() 771 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); in Fold() 1494 ProfileDagInit(ID, Val, ValName, Args, ArgNames); in Profile() 1512 return DagInit::get(Op, ValName, NewArgs, ArgNames); in resolveReferences() 1524 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0]; in getAsString() 1527 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i]; in getAsString()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 196 typedef std::vector<std::string> ArgNames; typedef 218 const ArgNames &theArgNames, in createFunction() 1139 ArgNames argNames; in createCatchWrappedInvokeFunction() 1401 ArgNames unwindArgNames; in createThrowExceptionFunction() 1742 ArgNames argNames; in createStandardUtilityFunctions()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 468 std::vector<std::string> ArgNames; in ParsePrototype() local 470 ArgNames.push_back(IdentifierStr); in ParsePrototype() 477 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 624 std::vector<std::string> ArgNames; in ParsePrototype() local 626 ArgNames.push_back(IdentifierStr); in ParsePrototype() 634 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 637 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
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()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 599 std::vector<std::string> ArgNames; in ParsePrototype() local 601 ArgNames.push_back(IdentifierStr); in ParsePrototype() 609 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
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()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 599 std::vector<std::string> ArgNames; in ParsePrototype() local 601 ArgNames.push_back(IdentifierStr); in ParsePrototype() 609 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 599 std::vector<std::string> ArgNames; in ParsePrototype() local 601 ArgNames.push_back(IdentifierStr); in ParsePrototype() 609 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 768 std::vector<std::string> ArgNames; in ParsePrototype() local 770 ArgNames.push_back(IdentifierStr); in ParsePrototype() 778 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 781 return llvm::make_unique<PrototypeAST>(FnLoc, FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 600 std::vector<std::string> ArgNames; in ParsePrototype() local 602 ArgNames.push_back(IdentifierStr); in ParsePrototype() 610 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 613 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0, in ParsePrototype()
|
/external/llvm/docs/tutorial/ |
D | LangImpl6.rst | 207 std::vector<std::string> ArgNames; 209 ArgNames.push_back(IdentifierStr); 217 if (Kind && ArgNames.size() != Kind) 220 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
|
D | LangImpl2.rst | 583 std::vector<std::string> ArgNames; 585 ArgNames.push_back(IdentifierStr); 592 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
|