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

/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/llvm/lib/CodeGen/
H A DJumpInstrTables.cpp166 FunctionType *FunTy = transformType(OrigFunTy); local
168 JumpMap::iterator it = Metadata.find(FunTy);
173 Metadata[FunTy] = Meta;
174 it = Metadata.find(FunTy);
187 JITI->insertEntry(FunTy, Target, JumpFun);
193 bool JumpInstrTables::hasTable(FunctionType *FunTy) { argument
194 FunctionType *TransTy = transformType(FunTy);
198 FunctionType *JumpInstrTables::transformType(FunctionType *FunTy) { argument
201 Type *VoidPtrTy = Type::getInt8PtrTy(FunTy->getContext());
205 bool IsVarArg = FunTy
[all...]
/external/clang/lib/Sema/
H A DSema.cpp1303 const FunctionType *FunTy = nullptr; local
1306 FunTy = PointeeTy->getAs<FunctionType>();
1307 if (!FunTy)
1308 FunTy = ExprTy->getAs<FunctionType>();
1311 dyn_cast_or_null<FunctionProtoType>(FunTy)) {
1313 ZeroArgCallReturnTy = FunTy->getReturnType();
/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
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c326 CAMLprim value llvm_is_var_arg(LLVMTypeRef FunTy) { argument
327 return Val_bool(LLVMIsFunctionVarArg(FunTy));
331 CAMLprim value llvm_param_types(LLVMTypeRef FunTy) { argument
332 value Tys = alloc(LLVMCountParamTypes(FunTy), 0);
333 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys);

Completed in 1124 milliseconds