Lines Matching refs:SuperMethod
7894 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
7895 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
7897 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7901 if (!SuperMethod) { in AddSuperSendCompletion()
7903 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7910 if (!SuperMethod) in AddSuperSendCompletion()
7914 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
7915 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
7920 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
7937 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
7977 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, in AddSuperSendCompletion()
7979 return SuperMethod; in AddSuperSendCompletion()
8139 if (ObjCMethodDecl *SuperMethod = in AddClassMessageCompletions() local
8141 Results.Ignore(SuperMethod); in AddClassMessageCompletions()
8280 if (ObjCMethodDecl *SuperMethod = in CodeCompleteObjCInstanceMessage() local
8282 Results.Ignore(SuperMethod); in CodeCompleteObjCInstanceMessage()