/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 293 std::vector<std::string> ArgNames; in ParsePrototype() local 295 ArgNames.push_back(IdentifierStr); in ParsePrototype() 302 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/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/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 331 std::vector<std::string> ArgNames; in ParsePrototype() local 333 ArgNames.push_back(IdentifierStr); in ParsePrototype() 340 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 336 std::vector<std::string> ArgNames; in ParsePrototype() local 338 ArgNames.push_back(IdentifierStr); in ParsePrototype() 345 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 305 std::vector<std::string> ArgNames; in ParsePrototype() local 307 ArgNames.push_back(IdentifierStr); in ParsePrototype() 314 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 312 std::vector<std::string> ArgNames; in ParsePrototype() local 314 ArgNames.push_back(IdentifierStr); in ParsePrototype() 321 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 346 std::vector<std::string> ArgNames; in ParsePrototype() local 348 ArgNames.push_back(IdentifierStr); in ParsePrototype() 355 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 357 std::vector<std::string> ArgNames; in ParsePrototype() local 359 ArgNames.push_back(IdentifierStr); in ParsePrototype() 366 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 355 std::vector<std::string> ArgNames; in ParsePrototype() local 357 ArgNames.push_back(IdentifierStr); in ParsePrototype() 364 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 494 std::vector<std::string> ArgNames; in ParsePrototype() local 496 ArgNames.push_back(IdentifierStr); in ParsePrototype() 504 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 507 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 367 std::vector<std::string> ArgNames; in ParsePrototype() local 369 ArgNames.push_back(IdentifierStr); in ParsePrototype() 376 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/include/llvm/TableGen/ |
D | Record.h | 1111 std::vector<std::string> ArgNames; variable 1118 ArgNames(NameRange.begin(), NameRange.end()) {} in DagInit() 1148 assert(Num < ArgNames.size() && "Arg number out of range!"); in getArgName() 1149 return ArgNames[Num]; in getArgName() 1165 inline const_name_iterator name_begin() const { return ArgNames.begin(); } in name_begin() 1166 inline const_name_iterator name_end () const { return ArgNames.end(); } in name_end() 1168 inline size_t name_size () const { return ArgNames.size(); } in name_size() 1169 inline bool name_empty() const { return ArgNames.empty(); } in name_empty()
|
/external/swiftshader/third_party/llvm-7.0/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()
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/ |
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 559 std::vector<std::string> ArgNames; in ParsePrototype() local 561 ArgNames.push_back(IdentifierStr); in ParsePrototype() 569 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 572 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/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()
|
/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()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 566 std::vector<std::string> ArgNames; in ParsePrototype() local 568 ArgNames.push_back(IdentifierStr); in ParsePrototype() 576 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 579 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
D | Record.cpp | 898 std::vector<std::string> ArgNames; in Fold() local 901 ArgNames.push_back(LHSs->getArgName(i)); in Fold() 905 ArgNames.push_back(RHSs->getArgName(i)); in Fold() 907 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); in Fold() 1603 ProfileDagInit(ID, Val, ValName, Args, ArgNames); in Profile() 1614 return DagInit::get(Op, ValName, NewArgs, ArgNames); in resolveReferences() 1626 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0]; in getAsString() 1629 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i]; in getAsString()
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 810 std::vector<std::string> ArgNames; in Fold() local 813 ArgNames.push_back(LHSs->getArgName(i)); in Fold() 817 ArgNames.push_back(RHSs->getArgName(i)); in Fold() 819 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); in Fold() 1552 ProfileDagInit(ID, Val, ValName, Args, ArgNames); in Profile() 1570 return DagInit::get(Op, ValName, NewArgs, ArgNames); in resolveReferences() 1582 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0]; in getAsString() 1585 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i]; in getAsString()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 413 std::vector<std::string> ArgNames; in ParsePrototype() local 415 ArgNames.push_back(IdentifierStr); in ParsePrototype() 422 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 634 std::vector<std::string> ArgNames; in ParsePrototype() local 636 ArgNames.push_back(IdentifierStr); in ParsePrototype() 644 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 647 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|