reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2604 if (MethodDecl->getImplementationControl() == ObjCMethodDecl::Optional) 2608 if (MethodDecl->hasAttr<UnavailableAttr>() || 2609 MethodDecl->hasAttr<DeprecatedAttr>()) 2612 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, 2616 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(), 2617 EF = MethodDecl->param_end(); 2619 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, 2626 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic()); 2628 match = !(MethodDecl->isClassMethod() && 2629 MethodDecl->getSelector() == GetNullarySelector("load", Context)); 2634 Diag(MethodDecl->getLocation(), diag::note_method_declared_at) 2635 << MethodDecl->getDeclName();