Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DASTImporter.cpp3235 if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecls[I])) { in VisitObjCMethodDecl() local
3236 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl()
3241 FoundMethod->getReturnType())) { in VisitObjCMethodDecl()
3244 << FoundMethod->getReturnType(); in VisitObjCMethodDecl()
3245 Importer.ToDiag(FoundMethod->getLocation(), in VisitObjCMethodDecl()
3252 if (D->param_size() != FoundMethod->param_size()) { in VisitObjCMethodDecl()
3255 << D->param_size() << FoundMethod->param_size(); in VisitObjCMethodDecl()
3256 Importer.ToDiag(FoundMethod->getLocation(), in VisitObjCMethodDecl()
3264 PEnd = D->param_end(), FoundP = FoundMethod->param_begin(); in VisitObjCMethodDecl()
3280 if (D->isVariadic() != FoundMethod->isVariadic()) { in VisitObjCMethodDecl()
[all …]