Lines Matching refs:ImpMethodDecl

2535 void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,  in WarnConflictingTypedMethods()  argument
2539 checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl)) in WarnConflictingTypedMethods()
2542 CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, in WarnConflictingTypedMethods()
2546 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), in WarnConflictingTypedMethods()
2547 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnConflictingTypedMethods()
2550 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF, in WarnConflictingTypedMethods()
2554 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) { in WarnConflictingTypedMethods()
2555 Diag(ImpMethodDecl->getLocation(), in WarnConflictingTypedMethods()
2586 void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, in WarnExactTypedMethods() argument
2600 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, in WarnExactTypedMethods()
2603 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), in WarnExactTypedMethods()
2604 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnExactTypedMethods()
2607 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, in WarnExactTypedMethods()
2614 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic()); in WarnExactTypedMethods()
2620 Diag(ImpMethodDecl->getLocation(), in WarnExactTypedMethods()
2813 ObjCMethodDecl *ImpMethodDecl = in MatchAllMethodDeclarations() local
2818 if (ImpMethodDecl) { in MatchAllMethodDeclarations()
2820 WarnConflictingTypedMethods(ImpMethodDecl, I, in MatchAllMethodDeclarations()
2823 WarnExactTypedMethods(ImpMethodDecl, I, isa<ObjCProtocolDecl>(CDecl)); in MatchAllMethodDeclarations()
2839 ObjCMethodDecl *ImpMethodDecl = in MatchAllMethodDeclarations() local
2844 if (ImpMethodDecl) { in MatchAllMethodDeclarations()
2846 WarnConflictingTypedMethods(ImpMethodDecl, I, in MatchAllMethodDeclarations()
2849 WarnExactTypedMethods(ImpMethodDecl, I, isa<ObjCProtocolDecl>(CDecl)); in MatchAllMethodDeclarations()