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