Searched refs:canAssignObjCInterfaces (Results 1 – 9 of 9) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DynamicTypePropagation.cpp | 466 if (C.canAssignObjCInterfaces(StaticLowerBound, *Current)) { in storeWhenMoreInformative() 471 if (C.canAssignObjCInterfaces(*Current, StaticUpperBound)) { in storeWhenMoreInformative() 536 ASTCtxt.canAssignObjCInterfaces(DestObjectPtrType, OrigObjectPtrType); in checkPostStmt() 538 ASTCtxt.canAssignObjCInterfaces(OrigObjectPtrType, DestObjectPtrType); in checkPostStmt() 562 !ASTCtxt.canAssignObjCInterfaces(DestObjectPtrType, *TrackedType) && in checkPostStmt() 563 !ASTCtxt.canAssignObjCInterfaces(*TrackedType, DestObjectPtrType)) { in checkPostStmt() 642 ASTCtxt.canAssignObjCInterfaces(ReceiverObjectPtrType, TrackedType)) { in findMethodDecl() 737 ASTCtxt.canAssignObjCInterfaces(ArgObjectPtrType, *TrackedArgType)) { in checkPreObjCMessage() 743 if (!ASTCtxt.canAssignObjCInterfaces(ParamObjectPtrType, in checkPreObjCMessage()
|
D | DynamicTypeChecker.cpp | 201 if (ASTCtxt.canAssignObjCInterfaces(StaticObjCType, DynObjCType)) in checkPostStmt() 205 ASTCtxt.canAssignObjCInterfaces(DynObjCType, StaticObjCType)) in checkPostStmt()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 6846 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, in canAssignObjCInterfaces() function in ASTContext 6867 return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this), in canAssignObjCInterfaces() 6884 return finish(canAssignObjCInterfaces(LHS, RHS)); in canAssignObjCInterfaces() 7027 return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT); in canAssignObjCObjectTypes() 7196 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, in canAssignObjCInterfaces() function in ASTContext 7266 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || in areComparableObjCPointerTypes() 7267 canAssignObjCInterfaces(RHSOPT, LHSOPT); in areComparableObjCPointerTypes() 7271 return canAssignObjCInterfaces( in canBindObjCObjectType() 7768 if (canAssignObjCInterfaces(LHSIface, RHSIface)) in mergeTypes() 7782 if (canAssignObjCInterfaces(LHS->getAs<ObjCObjectPointerType>(), in mergeTypes()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 2228 bool canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 2230 bool canAssignObjCInterfaces(const ObjCObjectType *LHS,
|
/external/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 1163 Context.canAssignObjCInterfaces( in ActOnPropertyImplDecl() 1488 compat = Context.canAssignObjCInterfaces(getterObjCPtr, propertyObjCPtr); in DiagnosePropertyAccessorMismatch()
|
D | SemaOverload.cpp | 2214 if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) { in isObjCPointerConversion() 2228 if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) { in isObjCPointerConversion() 3618 bool AssignLeft = S.Context.canAssignObjCInterfaces(FromObjCPtr1, in CompareStandardConversionSequences() 3620 bool AssignRight = S.Context.canAssignObjCInterfaces(FromObjCPtr2, in CompareStandardConversionSequences() 3889 = S.Context.canAssignObjCInterfaces(FromPtr1, FromPtr2); in CompareDerivedToBaseConversions() 3891 = S.Context.canAssignObjCInterfaces(FromPtr2, FromPtr1); in CompareDerivedToBaseConversions() 3893 = S.Context.canAssignObjCInterfaces(ToPtr1, ToPtr2); in CompareDerivedToBaseConversions() 3895 = S.Context.canAssignObjCInterfaces(ToPtr2, ToPtr1); in CompareDerivedToBaseConversions()
|
D | SemaDeclObjC.cpp | 2186 return Context.canAssignObjCInterfaces(A, B); in isObjCTypeSubstitutable()
|
D | SemaType.cpp | 866 } else if (S.Context.canAssignObjCInterfaces(boundObjC, typeArgObjC)) { in applyObjCTypeArgs()
|
D | SemaExpr.cpp | 6427 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { in FindCompositeObjCPointerType() 6429 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { in FindCompositeObjCPointerType()
|