/aosp_15_r20/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DynamicTypePropagation.cpp | 491 if (C.canAssignObjCInterfaces(StaticLowerBound, *Current)) { in storeWhenMoreInformative() 496 if (C.canAssignObjCInterfaces(*Current, StaticUpperBound)) { in storeWhenMoreInformative() 561 ASTCtxt.canAssignObjCInterfaces(DestObjectPtrType, OrigObjectPtrType); in checkPostStmt() 563 ASTCtxt.canAssignObjCInterfaces(OrigObjectPtrType, DestObjectPtrType); in checkPostStmt() 587 !ASTCtxt.canAssignObjCInterfaces(DestObjectPtrType, *TrackedType) && in checkPostStmt() 588 !ASTCtxt.canAssignObjCInterfaces(*TrackedType, DestObjectPtrType)) { in checkPostStmt() 667 ASTCtxt.canAssignObjCInterfaces(ReceiverObjectPtrType, TrackedType)) { in findMethodDecl() 762 ASTCtxt.canAssignObjCInterfaces(ArgObjectPtrType, *TrackedArgType)) { in checkPreObjCMessage() 768 if (!ASTCtxt.canAssignObjCInterfaces(ParamObjectPtrType, in checkPreObjCMessage()
|
H A D | DynamicTypeChecker.cpp | 201 if (ASTCtxt.canAssignObjCInterfaces(StaticObjCType, DynObjCType)) in checkPostStmt() 205 ASTCtxt.canAssignObjCInterfaces(DynObjCType, StaticObjCType)) in checkPostStmt()
|
/aosp_15_r20/external/clang/lib/AST/ |
H A D | ASTContext.cpp | 6944 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, in canAssignObjCInterfaces() function in ASTContext 6965 return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this), in canAssignObjCInterfaces() 6982 return finish(canAssignObjCInterfaces(LHS, RHS)); in canAssignObjCInterfaces() 7125 return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT); in canAssignObjCObjectTypes() 7303 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, in canAssignObjCInterfaces() function in ASTContext 7373 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || in areComparableObjCPointerTypes() 7374 canAssignObjCInterfaces(RHSOPT, LHSOPT); in areComparableObjCPointerTypes() 7378 return canAssignObjCInterfaces( in canBindObjCObjectType() 7883 if (canAssignObjCInterfaces(LHSIface, RHSIface)) in mergeTypes() 7897 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(), in mergeTypes()
|
/aosp_15_r20/external/clang/include/clang/AST/ |
H A D | ASTContext.h | 2253 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2255 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/AST/ |
D | ASTContext.h | 2926 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2928 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/AST/ |
D | ASTContext.h | 2900 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2902 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/AST/ |
D | ASTContext.h | 2900 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2902 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/AST/ |
D | ASTContext.h | 2886 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2888 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/aosp_15_r20/external/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 2280 if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) { in isObjCPointerConversion() 2294 if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) { in isObjCPointerConversion() 3671 bool AssignLeft = S.Context.canAssignObjCInterfaces(FromObjCPtr1, in CompareStandardConversionSequences() 3673 bool AssignRight = S.Context.canAssignObjCInterfaces(FromObjCPtr2, in CompareStandardConversionSequences() 3942 = S.Context.canAssignObjCInterfaces(FromPtr1, FromPtr2); in CompareDerivedToBaseConversions() 3944 = S.Context.canAssignObjCInterfaces(FromPtr2, FromPtr1); in CompareDerivedToBaseConversions() 3946 = S.Context.canAssignObjCInterfaces(ToPtr1, ToPtr2); in CompareDerivedToBaseConversions() 3948 = S.Context.canAssignObjCInterfaces(ToPtr2, ToPtr1); in CompareDerivedToBaseConversions()
|
H A D | SemaObjCProperty.cpp | 1178 Context.canAssignObjCInterfaces( in ActOnPropertyImplDecl() 1505 compat = Context.canAssignObjCInterfaces(getterObjCPtr, propertyObjCPtr); in DiagnosePropertyAccessorMismatch()
|
H A D | SemaDeclObjC.cpp | 2211 return Context.canAssignObjCInterfaces(A, B); in isObjCTypeSubstitutable()
|
H A D | SemaType.cpp | 920 } else if (S.Context.canAssignObjCInterfaces(boundObjC, typeArgObjC)) { in applyObjCTypeArgs()
|
H A D | SemaExpr.cpp | 6815 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { in FindCompositeObjCPointerType() 6817 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { in FindCompositeObjCPointerType()
|