Home | History | Annotate | Download | only in Sema

Lines Matching refs:fnType

8342   QualType FnType = Cand->Surrogate->getConversionType();
8347 FnType->getAs<LValueReferenceType>()) {
8348 FnType = FnTypeRef->getPointeeType();
8351 FnType->getAs<RValueReferenceType>()) {
8352 FnType = FnTypeRef->getPointeeType();
8355 if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) {
8356 FnType = FnTypePtr->getPointeeType();
8360 FnType = QualType(FnType->getAs<FunctionType>(), 0);
8362 if (isPointer) FnType = S.Context.getPointerType(FnType);
8363 if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType);
8364 if (isLValueReference) FnType = S.Context.getLValueReferenceType(FnType);
8367 << FnType;
10363 QualType fnType =
10366 const FunctionProtoType *proto = fnType->castAs<FunctionProtoType>();
10385 << fnType.getUnqualifiedType()