Home | History | Annotate | Download | only in AST

Lines Matching refs:FPT

2225     const FunctionProtoType *FPT = cast<FunctionProtoType>(T);
2226 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2228 Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI);
2238 const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>();
2239 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
2240 FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI));
5708 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
5709 for (const auto &I : FPT->param_types())
7835 if (const FunctionProtoType *FPT = cast<FunctionProtoType>(F)) {
7836 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7839 getFunctionType(OldReturnType, FPT->getParamTypes(), EPI);