Home
last modified time | relevance | path

Searched refs:FnType (Results 1 – 13 of 13) sorted by relevance

/external/icu4c/test/perf/ustrperf/
Dstringperf.h56 enum FnType { Fn_ICU, Fn_STD }; enum
57 typedef FnType FnType; typedef
339 FnType fnType_;
/external/clang/lib/CodeGen/
DCGDebugInfo.h112 llvm::DIType getOrCreateFunctionType(const Decl *D, QualType FnType,
184 void EmitFunctionStart(GlobalDecl GD, QualType FnType,
DCodeGenFunction.cpp384 QualType FnType = in StartFunction() local
391 DI->EmitFunctionStart(GD, FnType, CurFn, Builder); in StartFunction()
DCGBlocks.cpp868 QualType FnType = BPT->getPointeeType(); in EmitBlockCallExpr() local
871 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), in EmitBlockCallExpr()
877 const FunctionType *FuncTy = FnType->castAs<FunctionType>(); in EmitBlockCallExpr()
DCGDebugInfo.cpp1989 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()
DCGExpr.cpp2813 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()
DCodeGenFunction.h2225 RValue EmitCall(QualType FnType, llvm::Value *Callee,
/external/clang/lib/AST/
DDeclCXX.cpp409 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()
DExpr.cpp1088 const FunctionType *FnType = CalleeType->castAs<FunctionType>(); in getCallReturnType() local
1089 return FnType->getResultType(); in getCallReturnType()
/external/clang/lib/Sema/
DSemaOverload.cpp8488 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 …]
DSemaLookup.cpp2003 const FunctionType *FnType = cast<FunctionType>(T); in addAssociatedClassesAndNamespaces() local
2004 T = FnType->getResultType().getTypePtr(); in addAssociatedClassesAndNamespaces()
DSemaExprCXX.cpp1927 QualType FnType = Context.getFunctionType(Return, &Argument, 1, EPI); in DeclareGlobalAllocationFunction() local
1931 FnType, /*TInfo=*/0, SC_None, in DeclareGlobalAllocationFunction()
DSemaExpr.cpp11499 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()