Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaCodeComplete.cpp5340 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
5341 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
5343 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5347 if (!SuperMethod) { in AddSuperSendCompletion()
5349 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5356 if (!SuperMethod) in AddSuperSendCompletion()
5360 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
5361 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
5366 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
5383 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
[all …]
DSemaDeclObjC.cpp420 const ObjCMethodDecl *SuperMethod = in ActOnStartOfObjCMethodDef() local
424 (SuperMethod && SuperMethod->hasAttr<ObjCRequiresSuperAttr>()); in ActOnStartOfObjCMethodDef()