Searched refs:FnType (Results 1 – 13 of 13) sorted by relevance
/external/icu4c/test/perf/ustrperf/ |
D | stringperf.h | 56 enum FnType { Fn_ICU, Fn_STD }; enum 57 typedef FnType FnType; typedef 339 FnType fnType_;
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.h | 112 llvm::DIType getOrCreateFunctionType(const Decl *D, QualType FnType, 184 void EmitFunctionStart(GlobalDecl GD, QualType FnType,
|
D | CodeGenFunction.cpp | 384 QualType FnType = in StartFunction() local 391 DI->EmitFunctionStart(GD, FnType, CurFn, Builder); in StartFunction()
|
D | CGBlocks.cpp | 868 QualType FnType = BPT->getPointeeType(); in EmitBlockCallExpr() local 871 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), in EmitBlockCallExpr() 877 const FunctionType *FuncTy = FnType->castAs<FunctionType>(); in EmitBlockCallExpr()
|
D | CGDebugInfo.cpp | 1989 QualType FnType, in getOrCreateFunctionType() argument 2012 return getOrCreateType(FnType, F); in getOrCreateFunctionType() 2016 void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType, in EmitFunctionStart() argument 2086 DIFnType = getOrCreateFunctionType(D, FnType, Unit); in EmitFunctionStart()
|
D | CGExpr.cpp | 2813 const FunctionType *FnType in EmitCall() local 2817 EmitCallArgs(Args, dyn_cast<FunctionProtoType>(FnType), ArgBeg, ArgEnd); in EmitCall() 2820 CGM.getTypes().arrangeFreeFunctionCall(Args, FnType); in EmitCall() 2839 if (isa<FunctionNoProtoType>(FnType) && !FnInfo.isVariadic()) { in EmitCall()
|
D | CodeGenFunction.h | 2225 RValue EmitCall(QualType FnType, llvm::Value *Callee,
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 409 const FunctionProtoType *FnType in getCopyAssignmentOperator() local 411 assert(FnType && "Overloaded operator has no prototype."); in getCopyAssignmentOperator() 413 if (FnType->getNumArgs() != 1 || FnType->isVariadic()) in getCopyAssignmentOperator() 416 QualType ArgType = FnType->getArgType(0); in getCopyAssignmentOperator()
|
D | Expr.cpp | 1088 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); in getCallReturnType() local 1089 return FnType->getResultType(); in getCallReturnType()
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 8488 QualType FnType = Cand->Surrogate->getConversionType(); in NoteSurrogateCandidate() local 8493 FnType->getAs<LValueReferenceType>()) { in NoteSurrogateCandidate() 8494 FnType = FnTypeRef->getPointeeType(); in NoteSurrogateCandidate() 8497 FnType->getAs<RValueReferenceType>()) { in NoteSurrogateCandidate() 8498 FnType = FnTypeRef->getPointeeType(); in NoteSurrogateCandidate() 8501 if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) { in NoteSurrogateCandidate() 8502 FnType = FnTypePtr->getPointeeType(); in NoteSurrogateCandidate() 8506 FnType = QualType(FnType->getAs<FunctionType>(), 0); in NoteSurrogateCandidate() 8508 if (isPointer) FnType = S.Context.getPointerType(FnType); in NoteSurrogateCandidate() 8509 if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType); in NoteSurrogateCandidate() [all …]
|
D | SemaLookup.cpp | 2003 const FunctionType *FnType = cast<FunctionType>(T); in addAssociatedClassesAndNamespaces() local 2004 T = FnType->getResultType().getTypePtr(); in addAssociatedClassesAndNamespaces()
|
D | SemaExprCXX.cpp | 1927 QualType FnType = Context.getFunctionType(Return, &Argument, 1, EPI); in DeclareGlobalAllocationFunction() local 1931 FnType, /*TInfo=*/0, SC_None, in DeclareGlobalAllocationFunction()
|
D | SemaExpr.cpp | 11499 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); in VisitCallExpr() local 11518 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType)) in VisitCallExpr() 11525 FnType->getExtInfo()); in VisitCallExpr()
|