Searched refs:FunTy (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/IR/
H A DCallSite.h39 template <typename FunTy = const Function,
94 FunTy *getCalledFunction() const {
95 return dyn_cast<FunTy>(getCalledValue());
162 FunTy *getCaller() const { return (*this)->getParent()->getParent(); }
/external/clang/test/Sema/
H A Ddllexport.c10 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables and functions}} typedef
H A Ddllimport.c10 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only applies to variables and functions}} typedef
/external/clang/lib/Sema/
H A DSema.cpp1326 const FunctionType *FunTy = nullptr; local
1329 FunTy = PointeeTy->getAs<FunctionType>();
1330 if (!FunTy)
1331 FunTy = ExprTy->getAs<FunctionType>();
1334 dyn_cast_or_null<FunctionProtoType>(FunTy)) {
1336 ZeroArgCallReturnTy = FunTy->getReturnType();
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c328 CAMLprim value llvm_is_var_arg(LLVMTypeRef FunTy) { argument
329 return Val_bool(LLVMIsFunctionVarArg(FunTy));
333 CAMLprim value llvm_param_types(LLVMTypeRef FunTy) { argument
334 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
335 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);
/external/clang/test/SemaCXX/
H A Ddllexport.cpp22 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}} typedef
H A Ddllimport.cpp21 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}} typedef

Completed in 511 milliseconds