Home | History | Annotate | Download | only in AST

Lines Matching defs:MethodDecl

695   ObjCMethodDecl *MethodDecl = nullptr;
702 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
703 return MethodDecl;
707 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
708 if (C != Cat || !MethodDecl->isImplicit())
709 return MethodDecl;
713 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
714 return MethodDecl;
723 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance)))
724 if (C != Cat || !MethodDecl->isImplicit())
725 return MethodDecl;
1949 ObjCMethodDecl *MethodDecl = nullptr;
1957 if ((MethodDecl = getMethod(Sel, isInstance)))
1958 return MethodDecl;
1961 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
1962 return MethodDecl;