Home | History | Annotate | Download | only in Sema

Lines Matching defs:FT

889   const FunctionProtoType *FT;
890 if ((FT = T->getAs<FunctionProtoType>())) {
892 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
894 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
896 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
898 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
900 if (!FT)
903 FT = S.ResolveExceptionSpec(E->getLocStart(), FT);
904 if (!FT)
907 return FT->isNothrow(S.Context) ? CT_Cannot : CT_Can;