Home | History | Annotate | Download | only in Sema

Lines Matching refs:FnTy

2128 static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy){
2130 Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString();
2132 switch (FnTy->getRefQualifier()) {
2817 const FunctionProtoType *FnTy = T->getAs<FunctionProtoType>();
2818 assert(FnTy && "Why oh why is there not a FunctionProtoType here?");
2878 << getFunctionQualifiersAsString(FnTy)
2882 FunctionProtoType::ExtProtoInfo EPI = FnTy->getExtProtoInfo();
2886 T = Context.getFunctionType(FnTy->getResultType(),
2887 ArrayRef<QualType>(FnTy->arg_type_begin(),
2888 FnTy->getNumArgs()),