Home
last modified time | relevance | path

Searched refs:SuperMethod (Results 1 – 2 of 2) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaCodeComplete.cpp5122 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()
[all …]
H A DSemaDeclObjC.cpp419 const ObjCMethodDecl *SuperMethod = in ActOnStartOfObjCMethodDef() local
423 (SuperMethod && SuperMethod->hasAttr<ObjCRequiresSuperAttr>()); in ActOnStartOfObjCMethodDef()