Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp1762 if (PrevMethod && in DiagnoseClassExtensionDupMethods()
4007 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4016 if (PrevMethod) { in ActOnAtEnd()
4017 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4031 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
4040 if (PrevMethod) { in ActOnAtEnd()
4041 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4822 const ObjCMethodDecl *PrevMethod = nullptr; in ActOnMethodDeclaration() local
4825 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4828 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp862 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { in setAsRedeclaration() argument
863 assert(PrevMethod); in setAsRedeclaration()
864 getASTContext().setObjCMethodRedeclaration(PrevMethod, this); in setAsRedeclaration()
866 PrevMethod->setHasRedeclaration(true); in setAsRedeclaration()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h271 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4469 const ObjCMethodDecl *PrevMethod,