Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaCodeComplete.cpp7804 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
7805 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
7807 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7811 if (!SuperMethod) { in AddSuperSendCompletion()
7813 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7820 if (!SuperMethod) in AddSuperSendCompletion()
7824 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
7825 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
7830 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
7847 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
[all …]
H A DSemaDeclObjC.cpp489 const ObjCMethodDecl *SuperMethod = in ActOnStartOfObjCMethodDef() local
493 (SuperMethod && SuperMethod->hasAttr<ObjCRequiresSuperAttr>()); in ActOnStartOfObjCMethodDef()