Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp1752 if (PrevMethod && in DiagnoseClassExtensionDupMethods()
3906 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
3915 if (PrevMethod) { in ActOnAtEnd()
3916 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
3930 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) in ActOnAtEnd()
3939 if (PrevMethod) { in ActOnAtEnd()
3940 Method->setAsRedeclaration(PrevMethod); in ActOnAtEnd()
4644 const ObjCMethodDecl *PrevMethod = nullptr; in ActOnMethodDeclaration() local
4647 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4650 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp856 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { in setAsRedeclaration() argument
857 assert(PrevMethod); in setAsRedeclaration()
858 getASTContext().setObjCMethodRedeclaration(PrevMethod, this); in setAsRedeclaration()
860 PrevMethod->setHasRedeclaration(true); in setAsRedeclaration()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h269 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3543 const ObjCMethodDecl *PrevMethod,