Home
last modified time | relevance | path

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

123

/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
Dtoy.cpp293 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/
DEditedSource.cpp48 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/
Dtoy.cpp331 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/
Dtoy.cpp336 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/
Dtoy.cpp305 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/
Dtoy.cpp312 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/
Dtoy.cpp346 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/
Dtoy.cpp357 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/
Dtoy.cpp355 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/
Dtoy.cpp494 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/
Dtoy.cpp367 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/
DRecord.h1111 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/
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()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
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()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
Dtoy.cpp559 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/
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()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
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()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp566 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/
DRecord.cpp898 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/
DRecord.cpp810 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/
Dtoy.cpp413 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/
Dtoy.cpp634 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/
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
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 llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, in ParsePrototype()

123