Home | History | Annotate | Download | only in Sema

Lines Matching refs:fnType

8601   QualType FnType = Cand->Surrogate->getConversionType();
8606 FnType->getAs<LValueReferenceType>()) {
8607 FnType = FnTypeRef->getPointeeType();
8610 FnType->getAs<RValueReferenceType>()) {
8611 FnType = FnTypeRef->getPointeeType();
8614 if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) {
8615 FnType = FnTypePtr->getPointeeType();
8619 FnType = QualType(FnType->getAs<FunctionType>(), 0);
8621 if (isPointer) FnType = S.Context.getPointerType(FnType);
8622 if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType);
8623 if (isLValueReference) FnType = S.Context.getLValueReferenceType(FnType);
8626 << FnType;
10687 QualType fnType =
10690 const FunctionProtoType *proto = fnType->castAs<FunctionProtoType>();
10709 << fnType.getUnqualifiedType()