Lines Matching refs:FPT

152                                  CanQual<FunctionProtoType> FPT) {  in appendParameterTypes()  argument
154 if (!FPT->hasExtParameterInfos()) { in appendParameterTypes()
157 prefix.append(FPT->param_type_begin(), FPT->param_type_end()); in appendParameterTypes()
165 prefix.reserve(prefix.size() + FPT->getNumParams()); in appendParameterTypes()
167 auto ExtInfos = FPT->getExtParameterInfos(); in appendParameterTypes()
168 assert(ExtInfos.size() == FPT->getNumParams()); in appendParameterTypes()
169 for (unsigned I = 0, E = FPT->getNumParams(); I != E; ++I) { in appendParameterTypes()
170 prefix.push_back(FPT->getParamType(I)); in appendParameterTypes()
175 addExtParameterInfosForCall(paramInfos, FPT.getTypePtr(), PrefixSize, in appendParameterTypes()
417 CanQual<FunctionProtoType> FPT = GetFormalType(D); in arrangeCXXConstructorCall() local
420 FPT, TotalPrefixArgs + ExtraSuffixArgs) in arrangeCXXConstructorCall()
430 FunctionType::ExtInfo Info = FPT->getExtInfo(); in arrangeCXXConstructorCall()
434 if (PassProtoArgs && FPT->hasExtParameterInfos()) { in arrangeCXXConstructorCall()
436 addExtParameterInfosForCall(ParamInfos, FPT.getTypePtr(), TotalPrefixArgs, in arrangeCXXConstructorCall()
1749 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); in GetFunctionTypeForVTable() local
1751 if (!isFuncTypeConvertible(FPT)) in GetFunctionTypeForVTable()
1759 const FunctionProtoType *FPT) { in AddAttributesFromFunctionProtoType() argument
1760 if (!FPT) in AddAttributesFromFunctionProtoType()
1763 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
1764 FPT->isNothrow()) in AddAttributesFromFunctionProtoType()
4175 const auto *FPT = Prototype.P.get<const FunctionProtoType *>(); in EmitCallArgs() local
4176 IsVariadic = FPT->isVariadic(); in EmitCallArgs()
4177 ExplicitCC = FPT->getExtInfo().getCC(); in EmitCallArgs()
4178 ArgTypes.assign(FPT->param_type_begin() + ParamsToSkip, in EmitCallArgs()
4179 FPT->param_type_end()); in EmitCallArgs()