Home | History | Annotate | Download | only in Sema

Lines Matching refs:FPT

6724     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
6727 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) {
6728 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
6730 NewFD->setType(Context.getFunctionType(FPT->getResultType(),
6731 FPT->getArgTypes(), EPI));
7322 const FunctionProtoType *FPT =
7324 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7326 MD->setType(Context.getFunctionType(FPT->getResultType(),
7327 FPT->getArgTypes(), EPI));
9328 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
9329 ResolveExceptionSpec(D->getLocation(), FPT);