Searched defs:FunTy (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSema.cpp1179 const FunctionType *FunTy = NULL; local
1182 FunTy = PointeeTy->getAs<FunctionType>();
1183 if (!FunTy)
1184 FunTy = ExprTy->getAs<FunctionType>();
1185 if (!FunTy && ExprTy == Context.BoundMemberTy) {
1191 FunTy = BoundMemberTy->castAs<FunctionType>();
1195 dyn_cast_or_null<FunctionProtoType>(FunTy)) {
1197 ZeroArgCallReturnTy = FunTy->getResultType();
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c268 CAMLprim value llvm_is_var_arg(LLVMTypeRef FunTy) { argument
269 return Val_bool(LLVMIsFunctionVarArg(FunTy));
273 CAMLprim value llvm_param_types(LLVMTypeRef FunTy) { argument
274 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
275 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);

Completed in 87 milliseconds