Searched refs:ArgVec (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 181 std::vector<std::string> ArgVec; in LLVMRunFunctionAsMain() local 183 ArgVec.push_back(ArgV[I]); in LLVMRunFunctionAsMain() 185 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() 191 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local 192 ArgVec.reserve(NumArgs); in LLVMRunFunction() 194 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction() 197 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
|
/external/llvm/lib/VMCore/ |
D | Constants.cpp | 1611 std::vector<Constant*> ArgVec; in getGetElementPtr() local 1612 ArgVec.reserve(NumIdx+1); in getGetElementPtr() 1613 ArgVec.push_back(C); in getGetElementPtr() 1615 ArgVec.push_back(cast<Constant>(Idxs[i])); in getGetElementPtr() 1616 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr() 1633 std::vector<Constant*> ArgVec; in getICmp() local 1634 ArgVec.push_back(LHS); in getICmp() 1635 ArgVec.push_back(RHS); in getICmp() 1637 const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred); in getICmp() 1656 std::vector<Constant*> ArgVec; in getFCmp() local [all …]
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2325 llvm::SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local 2326 ArgVec.reserve(NumArgs); in getTemplateSpecializationType() 2328 ArgVec.push_back(Args[i].getArgument()); in getTemplateSpecializationType() 2330 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs, in getTemplateSpecializationType()
|