/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/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/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/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/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/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/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/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/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/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/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/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 625 std::vector<std::string> ArgNames; in ParsePrototype() local 627 ArgNames.push_back(IdentifierStr); in ParsePrototype() 635 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 638 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 637 std::vector<std::string> ArgNames; in ParsePrototype() local 639 ArgNames.push_back(IdentifierStr); in ParsePrototype() 647 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 637 std::vector<std::string> ArgNames; in ParsePrototype() local 639 ArgNames.push_back(IdentifierStr); in ParsePrototype() 647 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 637 std::vector<std::string> ArgNames; in ParsePrototype() local 639 ArgNames.push_back(IdentifierStr); in ParsePrototype() 647 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/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/swiftshader/third_party/LLVM/include/llvm/TableGen/ |
D | Record.h | 1262 std::vector<std::string> ArgNames; variable 1269 ArgNames(NameRange.begin(), NameRange.end()) {} in DagInit() 1298 assert(Num < ArgNames.size() && "Arg number out of range!"); in getArgName() 1299 return ArgNames[Num]; in getArgName() 1315 inline const_name_iterator name_begin() const { return ArgNames.begin(); } in name_begin() 1316 inline const_name_iterator name_end () const { return ArgNames.end(); } in name_end() 1318 inline size_t name_size () const { return ArgNames.size(); } in name_size() 1319 inline bool name_empty() const { return ArgNames.empty(); } in name_empty()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 480 std::vector<std::string> ArgNames; in ParsePrototype() local 482 ArgNames.push_back(IdentifierStr); in ParsePrototype() 489 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames)); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | toy.cpp | 640 std::vector<std::string> ArgNames; in ParsePrototype() local 642 ArgNames.push_back(IdentifierStr); in ParsePrototype() 650 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 653 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 637 std::vector<std::string> ArgNames; in ParsePrototype() local 639 ArgNames.push_back(IdentifierStr); in ParsePrototype() 647 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
|