Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DASTContext.h2020 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT,
2022 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
/external/clang/lib/AST/
DASTContext.cpp6553 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, in canAssignObjCInterfaces() function in ASTContext
6574 return canAssignObjCInterfaces(LHS, RHS); in canAssignObjCInterfaces()
6677 if (canAssignObjCInterfaces(LHS, RHS)) { in areCommonBaseCompatible()
6692 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, in canAssignObjCInterfaces() function in ASTContext
6769 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || in areComparableObjCPointerTypes()
6770 canAssignObjCInterfaces(RHSOPT, LHSOPT); in areComparableObjCPointerTypes()
6774 return canAssignObjCInterfaces( in canBindObjCObjectType()
7271 if (canAssignObjCInterfaces(LHSIface, RHSIface)) in mergeTypes()
7285 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(), in mergeTypes()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1068 Context.canAssignObjCInterfaces( in ActOnPropertyImplDecl()
1389 Context.canAssignObjCInterfaces( in DiagnosePropertyAccessorMismatch()
DSemaOverload.cpp2201 if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) { in isObjCPointerConversion()
2215 if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) { in isObjCPointerConversion()
3585 bool AssignLeft = S.Context.canAssignObjCInterfaces(FromObjCPtr1, in CompareStandardConversionSequences()
3587 bool AssignRight = S.Context.canAssignObjCInterfaces(FromObjCPtr2, in CompareStandardConversionSequences()
3856 = S.Context.canAssignObjCInterfaces(FromPtr1, FromPtr2); in CompareDerivedToBaseConversions()
3858 = S.Context.canAssignObjCInterfaces(FromPtr2, FromPtr1); in CompareDerivedToBaseConversions()
3860 = S.Context.canAssignObjCInterfaces(ToPtr1, ToPtr2); in CompareDerivedToBaseConversions()
3862 = S.Context.canAssignObjCInterfaces(ToPtr2, ToPtr1); in CompareDerivedToBaseConversions()
DSemaDeclObjC.cpp1343 return Context.canAssignObjCInterfaces(A, B); in isObjCTypeSubstitutable()
DSemaExpr.cpp5872 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { in FindCompositeObjCPointerType()
5874 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { in FindCompositeObjCPointerType()