Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCodeComplete.cpp7261 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
7262 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
7264 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7268 if (!SuperMethod) { in AddSuperSendCompletion()
7270 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7277 if (!SuperMethod) in AddSuperSendCompletion()
7281 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
7282 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
7287 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
7304 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()