Home
last modified time | relevance | path

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

12

/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/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/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/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/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/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/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/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/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/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/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/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp625 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/
Dtoy.cpp637 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/
Dtoy.cpp637 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/
Dtoy.cpp637 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/
DExceptionDemo.cpp196 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/
DRecord.h1262 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/
Dtoy.cpp480 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/
Dtoy.cpp640 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/
Dtoy.cpp637 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()

12