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

/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp845 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; local
846 if (PrevMethod &&
847 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) &&
848 !MatchTwoMethodDeclarations(Method, PrevMethod)) {
851 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
2572 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; local
2573 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
2575 if ((isInterfaceDeclKind && PrevMethod && !match)
2579 Diag(PrevMethod
2596 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; local
3164 const ObjCMethodDecl *PrevMethod = nullptr; local
[all...]
/external/clang/lib/AST/
H A DDeclObjC.cpp677 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { argument
678 assert(PrevMethod);
679 getASTContext().setObjCMethodRedeclaration(PrevMethod, this);
681 PrevMethod->HasRedeclaration = true;
/external/clang/include/clang/AST/
H A DDeclObjC.h283 void setAsRedeclaration(const ObjCMethodDecl *PrevMethod);
/external/clang/include/clang/Sema/
H A DSema.h2837 const ObjCMethodDecl *PrevMethod,

Completed in 815 milliseconds