Home | History | Annotate | Download | only in AST

Lines Matching refs:MethodDecl

8880 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
8883 if (MethodDecl->hasAttr<UnavailableAttr>()
8884 || MethodDecl->hasAttr<DeprecatedAttr>())
8886 if (MethodDecl->getObjCDeclQualifier() !=
8889 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
8892 if (MethodDecl->param_size() != MethodImpl->param_size())
8896 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
8897 EF = MethodDecl->param_end();
8906 return (MethodDecl->isVariadic() == MethodImpl->isVariadic());