Lines Matching refs:ImpMethodDecl
2578 void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, in WarnConflictingTypedMethods() argument
2582 checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl)) in WarnConflictingTypedMethods()
2585 CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, in WarnConflictingTypedMethods()
2589 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), in WarnConflictingTypedMethods()
2590 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnConflictingTypedMethods()
2593 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF, in WarnConflictingTypedMethods()
2597 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) { in WarnConflictingTypedMethods()
2598 Diag(ImpMethodDecl->getLocation(), in WarnConflictingTypedMethods()
2629 void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, in WarnExactTypedMethods() argument
2643 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, in WarnExactTypedMethods()
2646 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), in WarnExactTypedMethods()
2647 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnExactTypedMethods()
2650 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, in WarnExactTypedMethods()
2657 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic()); in WarnExactTypedMethods()
2663 Diag(ImpMethodDecl->getLocation(), in WarnExactTypedMethods()
2850 ObjCMethodDecl *ImpMethodDecl = in MatchAllMethodDeclarations() local
2855 if (ImpMethodDecl) { in MatchAllMethodDeclarations()
2857 if (ImpMethodDecl->isSynthesizedAccessorStub()) in MatchAllMethodDeclarations()
2860 WarnConflictingTypedMethods(ImpMethodDecl, I, in MatchAllMethodDeclarations()
2863 WarnExactTypedMethods(ImpMethodDecl, I, isa<ObjCProtocolDecl>(CDecl)); in MatchAllMethodDeclarations()
2879 ObjCMethodDecl *ImpMethodDecl = in MatchAllMethodDeclarations() local
2884 if (ImpMethodDecl) { in MatchAllMethodDeclarations()
2886 if (ImpMethodDecl->isSynthesizedAccessorStub()) in MatchAllMethodDeclarations()
2889 WarnConflictingTypedMethods(ImpMethodDecl, I, in MatchAllMethodDeclarations()
2892 WarnExactTypedMethods(ImpMethodDecl, I, isa<ObjCProtocolDecl>(CDecl)); in MatchAllMethodDeclarations()