Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DASTImporter.cpp4252 if (auto *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecl)) { in VisitObjCMethodDecl() local
4253 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl()
4258 FoundMethod->getReturnType())) { in VisitObjCMethodDecl()
4261 << FoundMethod->getReturnType(); in VisitObjCMethodDecl()
4262 Importer.ToDiag(FoundMethod->getLocation(), in VisitObjCMethodDecl()
4270 if (D->param_size() != FoundMethod->param_size()) { in VisitObjCMethodDecl()
4273 << D->param_size() << FoundMethod->param_size(); in VisitObjCMethodDecl()
4274 Importer.ToDiag(FoundMethod->getLocation(), in VisitObjCMethodDecl()
4283 PEnd = D->param_end(), FoundP = FoundMethod->param_begin(); in VisitObjCMethodDecl()
4300 if (D->isVariadic() != FoundMethod->isVariadic()) { in VisitObjCMethodDecl()
[all …]