/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 286 std::vector<std::string> ArgNames; in ParsePrototype() local 288 ArgNames.push_back(IdentifierStr); in ParsePrototype() 295 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 307 std::vector<std::string> ArgNames; in ParsePrototype() local 309 ArgNames.push_back(IdentifierStr); in ParsePrototype() 316 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 314 std::vector<std::string> ArgNames; in ParsePrototype() local 316 ArgNames.push_back(IdentifierStr); in ParsePrototype() 323 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 496 std::vector<std::string> ArgNames; in ParsePrototype() local 498 ArgNames.push_back(IdentifierStr); in ParsePrototype() 506 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 509 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.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()
|
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/MCJIT/cached/ |
D | toy-jit.cpp | 578 std::vector<std::string> ArgNames; in ParsePrototype() local 580 ArgNames.push_back(IdentifierStr); in ParsePrototype() 588 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 591 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/Chapter7/ |
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/Chapter5/ |
D | toy.cpp | 415 std::vector<std::string> ArgNames; in ParsePrototype() local 417 ArgNames.push_back(IdentifierStr); in ParsePrototype() 424 return new PrototypeAST(FnName, ArgNames); in ParsePrototype()
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 902 std::vector<std::string> ArgNames; in Fold() local 905 ArgNames.push_back(LHSs->getArgName(i)); in Fold() 909 ArgNames.push_back(RHSs->getArgName(i)); in Fold() 911 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); in Fold() 1593 ProfileDagInit(ID, Val, ValName, Args, ArgNames); in Profile() 1604 return DagInit::get(Op, ValName, NewArgs, ArgNames); in resolveReferences() 1616 if (!ArgNames[0].empty()) Result += ":$" + ArgNames[0]; in getAsString() 1619 if (!ArgNames[i].empty()) Result += ":$" + ArgNames[i]; in getAsString()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 194 typedef std::vector<std::string> ArgNames; typedef 216 const ArgNames &theArgNames, in createFunction() 1140 ArgNames argNames; in createCatchWrappedInvokeFunction() 1403 ArgNames unwindArgNames; in createThrowExceptionFunction() 1744 ArgNames argNames; in createStandardUtilityFunctions()
|
/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/include/llvm/TableGen/ |
D | Record.h | 1261 std::vector<std::string> ArgNames; variable 1268 ArgNames(NameRange.begin(), NameRange.end()) {} in DagInit() 1300 assert(Num < ArgNames.size() && "Arg number out of range!"); in getArgName() 1301 return ArgNames[Num]; in getArgName() 1317 inline const_name_iterator name_begin() const { return ArgNames.begin(); } in name_begin() 1318 inline const_name_iterator name_end () const { return ArgNames.end(); } in name_end() 1320 inline size_t name_size () const { return ArgNames.size(); } in name_size() 1321 inline bool name_empty() const { return ArgNames.empty(); } in name_empty()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 608 std::vector<std::string> ArgNames; in ParsePrototype() local 610 ArgNames.push_back(IdentifierStr); in ParsePrototype() 618 if (Kind && ArgNames.size() != Kind) in ParsePrototype() 621 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
|
/external/llvm/docs/tutorial/ |
D | LangImpl6.rst | 200 std::vector<std::string> ArgNames; 202 ArgNames.push_back(IdentifierStr); 210 if (Kind && ArgNames.size() != Kind) 213 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
|
D | LangImpl2.rst | 555 std::vector<std::string> ArgNames; 557 ArgNames.push_back(IdentifierStr); 564 return new PrototypeAST(FnName, ArgNames);
|