Lines Matching refs:SuperMethod
5360 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
5361 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
5363 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5367 if (!SuperMethod) { in AddSuperSendCompletion()
5369 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5376 if (!SuperMethod) in AddSuperSendCompletion()
5380 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
5381 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
5386 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
5403 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
5447 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, in AddSuperSendCompletion()
5449 return SuperMethod; in AddSuperSendCompletion()
5610 if (ObjCMethodDecl *SuperMethod in AddClassMessageCompletions() local
5612 Results.Ignore(SuperMethod); in AddClassMessageCompletions()
5752 if (ObjCMethodDecl *SuperMethod in CodeCompleteObjCInstanceMessage() local
5754 Results.Ignore(SuperMethod); in CodeCompleteObjCInstanceMessage()