Home
last modified time | relevance | path

Searched refs:PrevMethod (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp1778 if (PrevMethod && in DiagnoseClassExtensionDupMethods()
4022 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4031 if (PrevMethod) { in ActOnAtEnd()
4032 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4046 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4055 if (PrevMethod) { in ActOnAtEnd()
4056 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4842 const ObjCMethodDecl *PrevMethod = nullptr; in ActOnMethodDeclaration() local
4845 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4848 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp913 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { in setAsRedeclaration() argument
914 assert(PrevMethod); in setAsRedeclaration()
915 getASTContext().setObjCMethodRedeclaration(PrevMethod, this); in setAsRedeclaration()
917 PrevMethod->setHasRedeclaration(true); in setAsRedeclaration()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h268 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4979 const ObjCMethodDecl *PrevMethod,