Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:FPT

915   else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
916 for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
917 EltTys.push_back(getOrCreateType(FPT->getParamType(i), Unit));
918 if (FPT->isVariadic())
2162 const FunctionProtoType *FPT =
2166 Ty->getClass(), FPT->getTypeQuals())),
2167 FPT, U),
2829 else if (auto *FPT = dyn_cast<FunctionProtoType>(FnType))
2830 if (FPT->getNumParams() > 1)
2831 SelfDeclTy = FPT->getParamType(0);
2854 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FnType))
2855 for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
2856 EltTys.push_back(getOrCreateType(FPT->getParamType(i), F));