Searched refs:canAssignObjCInterfaces (Results 1 – 7 of 7) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTContext.cpp | 6772 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, in canAssignObjCInterfaces() function in ASTContext 6793 return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this), in canAssignObjCInterfaces() 6810 return finish(canAssignObjCInterfaces(LHS, RHS)); in canAssignObjCInterfaces() 6953 return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT); in canAssignObjCObjectTypes() 7122 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, in canAssignObjCInterfaces() function in ASTContext 7192 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || in areComparableObjCPointerTypes() 7193 canAssignObjCInterfaces(RHSOPT, LHSOPT); in areComparableObjCPointerTypes() 7197 return canAssignObjCInterfaces( in canBindObjCObjectType() 7694 if (canAssignObjCInterfaces(LHSIface, RHSIface)) in mergeTypes() 7708 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(), in mergeTypes()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ASTContext.h | 2142 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2144 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaOverload.cpp | 2156 if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) { in isObjCPointerConversion() 2170 if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) { in isObjCPointerConversion() 3544 bool AssignLeft = S.Context.canAssignObjCInterfaces(FromObjCPtr1, in CompareStandardConversionSequences() 3546 bool AssignRight = S.Context.canAssignObjCInterfaces(FromObjCPtr2, in CompareStandardConversionSequences() 3815 = S.Context.canAssignObjCInterfaces(FromPtr1, FromPtr2); in CompareDerivedToBaseConversions() 3817 = S.Context.canAssignObjCInterfaces(FromPtr2, FromPtr1); in CompareDerivedToBaseConversions() 3819 = S.Context.canAssignObjCInterfaces(ToPtr1, ToPtr2); in CompareDerivedToBaseConversions() 3821 = S.Context.canAssignObjCInterfaces(ToPtr2, ToPtr1); in CompareDerivedToBaseConversions()
|
| HD | SemaObjCProperty.cpp | 1076 Context.canAssignObjCInterfaces( in ActOnPropertyImplDecl() 1401 Context.canAssignObjCInterfaces( in DiagnosePropertyAccessorMismatch()
|
| HD | SemaDeclObjC.cpp | 2167 return Context.canAssignObjCInterfaces(A, B); in isObjCTypeSubstitutable()
|
| HD | SemaType.cpp | 854 } else if (S.Context.canAssignObjCInterfaces(boundObjC, typeArgObjC)) { in applyObjCTypeArgs()
|
| HD | SemaExpr.cpp | 6284 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { in FindCompositeObjCPointerType() 6286 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { in FindCompositeObjCPointerType()
|