Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp2400 for (auto *FoundDecl : FoundDecls) { in VisitNamespaceDecl()
2727 auto FoundDecls = in VisitEnumDecl() local
2841 auto FoundDecls = in VisitRecordDecl() local
2843 if (!FoundDecls.empty()) { in VisitRecordDecl()
3666 for (auto *FoundDecl : FoundDecls) { in VisitFieldDecl()
3956 for (auto *FoundDecl : FoundDecls) { in VisitObjCIvarDecl()
4251 for (auto *FoundDecl : FoundDecls) { in VisitObjCMethodDecl()
4562 for (auto *FoundDecl : FoundDecls) { in VisitObjCProtocolDecl()
5036 for (auto *FoundDecl : FoundDecls) { in VisitObjCInterfaceDecl()
5209 for (auto *FoundDecl : FoundDecls) { in VisitObjCPropertyDecl()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp174 llvm::SmallVector<NamedDecl*, 8> FoundDecls; in getDestructorName() local
209 FoundDecls.push_back(D); in getDestructorName()
366 unsigned NumNonExtensionDecls = FoundDecls.size(); in getDestructorName()
392 Diag(FoundDecls.back()->getLocation(), diag::note_destructor_type_here) in getDestructorName()
403 FoundDecls.resize(NumNonExtensionDecls); in getDestructorName()
406 std::stable_sort(FoundDecls.begin(), FoundDecls.end(), in getDestructorName()
426 if (FoundDecls.empty()) { in getDestructorName()
430 } else if (!SearchType.isNull() && FoundDecls.size() == 1) { in getDestructorName()
431 if (auto *TD = dyn_cast<TypeDecl>(FoundDecls[0]->getUnderlyingDecl())) { in getDestructorName()
447 for (NamedDecl *FoundD : FoundDecls) { in getDestructorName()