Lines Matching refs:SuperMethod
7751 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
7752 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
7754 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7758 if (!SuperMethod) { in AddSuperSendCompletion()
7760 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7767 if (!SuperMethod) in AddSuperSendCompletion()
7771 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
7772 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
7777 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
7794 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
7834 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, in AddSuperSendCompletion()
7836 return SuperMethod; in AddSuperSendCompletion()
7995 if (ObjCMethodDecl *SuperMethod = in AddClassMessageCompletions() local
7997 Results.Ignore(SuperMethod); in AddClassMessageCompletions()
8136 if (ObjCMethodDecl *SuperMethod = in CodeCompleteObjCInstanceMessage() local
8138 Results.Ignore(SuperMethod); in CodeCompleteObjCInstanceMessage()