Searched refs:ArgVec (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 179 std::vector<std::string> ArgVec; in LLVMRunFunctionAsMain() local 181 ArgVec.push_back(ArgV[I]); in LLVMRunFunctionAsMain() 183 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() 189 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local 190 ArgVec.reserve(NumArgs); in LLVMRunFunction() 192 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction() 195 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
|
/external/llvm/lib/VMCore/ |
D | Constants.cpp | 1754 std::vector<Constant*> ArgVec; in getGetElementPtr() local 1755 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr() 1756 ArgVec.push_back(C); in getGetElementPtr() 1758 ArgVec.push_back(cast<Constant>(Idxs[i])); in getGetElementPtr() 1759 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr() 1776 std::vector<Constant*> ArgVec; in getICmp() local 1777 ArgVec.push_back(LHS); in getICmp() 1778 ArgVec.push_back(RHS); in getICmp() 1780 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred); in getICmp() 1799 std::vector<Constant*> ArgVec; in getFCmp() local [all …]
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2822 SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local 2823 ArgVec.reserve(NumArgs); in getTemplateSpecializationType() 2825 ArgVec.push_back(Args[i].getArgument()); in getTemplateSpecializationType() 2827 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs, in getTemplateSpecializationType()
|