Lines Matching refs:SuperMethod
5122 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
5123 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
5125 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5129 if (!SuperMethod) { in AddSuperSendCompletion()
5131 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5138 if (!SuperMethod) in AddSuperSendCompletion()
5142 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
5143 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
5148 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
5165 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
5208 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, in AddSuperSendCompletion()
5210 return SuperMethod; in AddSuperSendCompletion()
5371 if (ObjCMethodDecl *SuperMethod in AddClassMessageCompletions() local
5373 Results.Ignore(SuperMethod); in AddClassMessageCompletions()
5513 if (ObjCMethodDecl *SuperMethod in CodeCompleteObjCInstanceMessage() local
5515 Results.Ignore(SuperMethod); in CodeCompleteObjCInstanceMessage()