Searched refs:ImpMethodDecl (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 2586 void SemaObjC::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, in WarnConflictingTypedMethods() argument 2590 checkMethodFamilyMismatch(SemaRef, ImpMethodDecl, MethodDecl)) in WarnConflictingTypedMethods() 2593 CheckMethodOverrideReturn(SemaRef, ImpMethodDecl, MethodDecl, in WarnConflictingTypedMethods() 2596 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), in WarnConflictingTypedMethods() 2597 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), in WarnConflictingTypedMethods() 2600 CheckMethodOverrideParam(SemaRef, ImpMethodDecl, MethodDecl, *IM, *IF, in WarnConflictingTypedMethods() 2604 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) { in WarnConflictingTypedMethods() 2605 Diag(ImpMethodDecl->getLocation(), in WarnConflictingTypedMethods() 2635 void SemaObjC::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, in WarnExactTypedMethods() argument 2651 bool match = CheckMethodOverrideReturn(SemaRef, ImpMethodDecl, MethodDecl, in WarnExactTypedMethods() [all …]
|