Home
last modified time | relevance | path

Searched refs:FromPointeeType (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Sema/
DSemaOverload.cpp2102 QualType FromPointeeType = FromTypePtr->getPointeeType(); in IsPointerConversion() local
2106 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
2112 if (FromPointeeType->isIncompleteOrObjectType() && in IsPointerConversion()
2122 if (getLangOpts().MSVCCompat && FromPointeeType->isFunctionType() && in IsPointerConversion()
2133 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2154 FromPointeeType->isRecordType() && ToPointeeType->isRecordType() && in IsPointerConversion()
2155 !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType) && in IsPointerConversion()
2156 IsDerivedFrom(From->getLocStart(), FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2163 if (FromPointeeType->isVectorType() && ToPointeeType->isVectorType() && in IsPointerConversion()
2164 Context.areCompatibleVectorTypes(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
[all …]