Home
last modified time | relevance | path

Searched refs:ParamTys (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp32 std::vector<Type *> ParamTys; in EnsureFunctionExists() local
34 ParamTys.push_back(I->getType()); in EnsureFunctionExists()
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false)); in EnsureFunctionExists()
72 std::vector<Type *> ParamTys; in ReplaceCallWith() local
74 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
76 FunctionType::get(RetTy, ParamTys, false)); in ReplaceCallWith()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c255 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) { in llvm_function_type() argument
256 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_function_type()
257 Wosize_val(ParamTys), 0); in llvm_function_type()
262 value ParamTys) { in llvm_var_arg_function_type() argument
263 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_var_arg_function_type()
264 Wosize_val(ParamTys), 1); in llvm_var_arg_function_type()
/external/clang/lib/Sema/
DSemaOverload.cpp5953 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, in AddBuiltinCandidate() argument
5969 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
5989 assert(ParamTys[ArgIdx] == Context.BoolTy && in AddBuiltinCandidate()
5995 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx], in AddBuiltinCandidate()
/external/clang/include/clang/Sema/
DSema.h1863 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,