Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp2168 QualType FromPointeeType = FromTypePtr->getPointeeType(); in IsPointerConversion() local
2172 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion()
2178 if (FromPointeeType->isIncompleteOrObjectType() && in IsPointerConversion()
2188 if (getLangOpts().MSVCCompat && FromPointeeType->isFunctionType() && in IsPointerConversion()
2199 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2220 FromPointeeType->isRecordType() && ToPointeeType->isRecordType() && in IsPointerConversion()
2221 !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType) && in IsPointerConversion()
2222 IsDerivedFrom(From->getLocStart(), FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2229 if (FromPointeeType->isVectorType() && ToPointeeType->isVectorType() && in IsPointerConversion()
2230 Context.areCompatibleVectorTypes(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
[all …]