Home | History | Annotate | Download | only in Sema

Lines Matching defs:fnType

9129   QualType FnType = Cand->Surrogate->getConversionType();
9134 FnType->getAs<LValueReferenceType>()) {
9135 FnType = FnTypeRef->getPointeeType();
9138 FnType->getAs<RValueReferenceType>()) {
9139 FnType = FnTypeRef->getPointeeType();
9142 if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) {
9143 FnType = FnTypePtr->getPointeeType();
9147 FnType = QualType(FnType->getAs<FunctionType>(), 0);
9149 if (isPointer) FnType = S.Context.getPointerType(FnType);
9150 if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType);
9151 if (isLValueReference) FnType = S.Context.getLValueReferenceType(FnType);
9154 << FnType;
11328 QualType fnType =
11331 const FunctionProtoType *proto = fnType->castAs<FunctionProtoType>();
11350 << fnType.getUnqualifiedType()