Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp8119 ObjCMethodDecl *SuperMethod = nullptr; in AddSuperSendCompletion() local
8120 while ((Class = Class->getSuperClass()) && !SuperMethod) { in AddSuperSendCompletion()
8122 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
8126 if (!SuperMethod) { in AddSuperSendCompletion()
8128 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
8135 if (!SuperMethod) in AddSuperSendCompletion()
8139 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion()
8140 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion()
8145 SuperP = SuperMethod->param_begin(); in AddSuperSendCompletion()
8162 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod, in AddSuperSendCompletion()
[all …]
H A DSemaDeclObjC.cpp496 const ObjCMethodDecl *SuperMethod = in ActOnStartOfObjCMethodDef() local
500 (SuperMethod && SuperMethod->hasAttr<ObjCRequiresSuperAttr>()); in ActOnStartOfObjCMethodDef()