Searched defs:FnType (Results 1 - 12 of 12) sorted by relevance

/external/clang/test/SemaCXX/
H A Daddr-of-overloaded-function-casting.cpp66 typedef void (FnType)(int); typedef
67 FnType a = static_cast<FnType>(f); // expected-error{{address of overloaded function}}
68 FnType b = (FnType)(f); // expected-error{{address of overloaded function}}
/external/clang/lib/CodeGen/
H A DCGCXX.cpp229 llvm::FunctionType *FnType, bool DontDefer) {
242 if (!FnType) {
245 FnType = getTypes().GetFunctionType(*FnInfo);
248 return cast<llvm::Function>(GetOrCreateLLVMFunction(Name, FnType, GD,
227 getAddrOfCXXStructor( const CXXMethodDecl *MD, StructorType Type, const CGFunctionInfo *FnInfo, llvm::FunctionType *FnType, bool DontDefer) argument
H A DCGBlocks.cpp978 QualType FnType = BPT->getPointeeType(); local
981 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(),
987 const FunctionType *FuncTy = FnType->castAs<FunctionType>();
H A DCodeGenFunction.cpp667 QualType FnType = local
670 DI->EmitFunctionStart(GD, Loc, StartLoc, FnType, CurFn, Builder);
H A DCGDebugInfo.cpp2403 QualType FnType = local
2408 getOrCreateFunctionType(FD, FnType, Unit), !FD->isExternallyVisible(),
2506 QualType FnType,
2555 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FnType))
2563 return cast<llvm::MDSubroutineType>(getOrCreateType(FnType, F));
2568 SourceLocation ScopeLoc, QualType FnType,
2627 getOrCreateFunctionType(D, FnType, Unit), Fn->hasInternalLinkage(),
2505 getOrCreateFunctionType(const Decl *D, QualType FnType, llvm::DIFile F) argument
2567 EmitFunctionStart(GlobalDecl GD, SourceLocation Loc, SourceLocation ScopeLoc, QualType FnType, llvm::Function *Fn, CGBuilderTy &Builder) argument
H A DCGExpr.cpp2259 llvm::FunctionType *FnType,
2280 FnType, FnName,
2369 llvm::FunctionType *FnType = local
2375 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind,
2385 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind, true,
2388 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind, false,
3351 const auto *FnType = local
3360 CGM.GetAddrOfRTTIDescriptor(QualType(FnType, 0), /*ForEH=*/true);
3401 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), E->arg_begin(),
3405 Args, FnType, /*isChainCal
2258 emitCheckHandlerCall(CodeGenFunction &CGF, llvm::FunctionType *FnType, ArrayRef<llvm::Value *> FnArgs, StringRef CheckName, CheckRecoverableKind RecoverKind, bool IsFatal, llvm::BasicBlock *ContBB) argument
[all...]
/external/icu/icu4c/source/test/perf/ustrperf/
H A Dstringperf.h56 enum FnType { Fn_ICU, Fn_STD }; enum
57 typedef FnType FnType; typedef
339 FnType fnType_;
/external/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp832 FunctionType *FnType = FunctionType::get(Int8PtrType, ArgTys, false); local
833 Handler = Function::Create(FnType, GlobalVariable::InternalLinkage,
836 FunctionType *FnType = local
838 Handler = Function::Create(FnType, GlobalVariable::InternalLinkage,
/external/clang/lib/AST/
H A DExpr.cpp1262 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); local
1263 return FnType->getReturnType();
/external/clang/lib/Sema/
H A DSemaLookup.cpp2241 const FunctionType *FnType = cast<FunctionType>(T); local
2242 T = FnType->getReturnType().getTypePtr();
H A DSemaExprCXX.cpp2193 QualType FnType = Context.getFunctionType( local
2198 FnType, /*TInfo=*/nullptr, SC_None, false, true);
H A DSemaExpr.cpp13891 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); local
13910 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
13951 FnType->getExtInfo());
14062 const FunctionType *FnType = FDT->castAs<FunctionType>(); local
14063 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);

Completed in 451 milliseconds