Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclObjC.cpp1764 if (PrevMethod && in DiagnoseClassExtensionDupMethods()
4015 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4024 if (PrevMethod) { in ActOnAtEnd()
4025 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4039 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4048 if (PrevMethod) { in ActOnAtEnd()
4049 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4830 const ObjCMethodDecl *PrevMethod = nullptr; in ActOnMethodDeclaration() local
4833 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4836 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclObjC.cpp878 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { in setAsRedeclaration() argument
879 assert(PrevMethod); in setAsRedeclaration()
880 getASTContext().setObjCMethodRedeclaration(PrevMethod, this); in setAsRedeclaration()
882 PrevMethod->setHasRedeclaration(true); in setAsRedeclaration()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h271 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h4730 const ObjCMethodDecl *PrevMethod,