Searched refs:FromPointeeType (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 2168 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 …]
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOverload.cpp | 2415 QualType FromPointeeType = FromTypePtr->getPointeeType(); in IsPointerConversion() local 2419 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) in IsPointerConversion() 2425 if (FromPointeeType->isIncompleteOrObjectType() && in IsPointerConversion() 2435 if (getLangOpts().MSVCCompat && FromPointeeType->isFunctionType() && in IsPointerConversion() 2446 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2466 if (getLangOpts().CPlusPlus && FromPointeeType->isRecordType() && in IsPointerConversion() 2468 !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType) && in IsPointerConversion() 2469 IsDerivedFrom(From->getBeginLoc(), FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2476 if (FromPointeeType->isVectorType() && ToPointeeType->isVectorType() && in IsPointerConversion() 2477 Context.areCompatibleVectorTypes(FromPointeeType, ToPointeeType)) { in IsPointerConversion() [all …]
|