Lines Matching refs:FPT

148                                  CanQual<FunctionProtoType> FPT) {  in appendParameterTypes()  argument
150 if (!FPT->hasExtParameterInfos()) { in appendParameterTypes()
153 prefix.append(FPT->param_type_begin(), FPT->param_type_end()); in appendParameterTypes()
161 prefix.reserve(prefix.size() + FPT->getNumParams()); in appendParameterTypes()
163 auto ExtInfos = FPT->getExtParameterInfos(); in appendParameterTypes()
164 assert(ExtInfos.size() == FPT->getNumParams()); in appendParameterTypes()
165 for (unsigned I = 0, E = FPT->getNumParams(); I != E; ++I) { in appendParameterTypes()
166 prefix.push_back(FPT->getParamType(I)); in appendParameterTypes()
171 addExtParameterInfosForCall(paramInfos, FPT.getTypePtr(), PrefixSize, in appendParameterTypes()
407 CanQual<FunctionProtoType> FPT = GetFormalType(D); in arrangeCXXConstructorCall() local
410 FPT, TotalPrefixArgs + ExtraSuffixArgs) in arrangeCXXConstructorCall()
420 FunctionType::ExtInfo Info = FPT->getExtInfo(); in arrangeCXXConstructorCall()
424 if (PassProtoArgs && FPT->hasExtParameterInfos()) { in arrangeCXXConstructorCall()
426 addExtParameterInfosForCall(ParamInfos, FPT.getTypePtr(), TotalPrefixArgs, in arrangeCXXConstructorCall()
1716 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); in GetFunctionTypeForVTable() local
1718 if (!isFuncTypeConvertible(FPT)) in GetFunctionTypeForVTable()
1726 const FunctionProtoType *FPT) { in AddAttributesFromFunctionProtoType() argument
1727 if (!FPT) in AddAttributesFromFunctionProtoType()
1730 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
1731 FPT->isNothrow()) in AddAttributesFromFunctionProtoType()
4084 const auto *FPT = Prototype.P.get<const FunctionProtoType *>(); in EmitCallArgs() local
4085 IsVariadic = FPT->isVariadic(); in EmitCallArgs()
4086 ExplicitCC = FPT->getExtInfo().getCC(); in EmitCallArgs()
4087 ArgTypes.assign(FPT->param_type_begin() + ParamsToSkip, in EmitCallArgs()
4088 FPT->param_type_end()); in EmitCallArgs()