Lines Matching refs:SuperMethod
6123 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
6124 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
6126 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
6130 if (!SuperMethod) { in AddSuperSendCompletion()
6132 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
6139 if (!SuperMethod) in AddSuperSendCompletion()
6143 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
6144 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
6149 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
6166 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
6206 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod, in AddSuperSendCompletion()
6208 return SuperMethod; in AddSuperSendCompletion()
6366 if (ObjCMethodDecl *SuperMethod = in AddClassMessageCompletions() local
6368 Results.Ignore(SuperMethod); in AddClassMessageCompletions()
6507 if (ObjCMethodDecl *SuperMethod = in CodeCompleteObjCInstanceMessage() local
6509 Results.Ignore(SuperMethod); in CodeCompleteObjCInstanceMessage()