Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp2545 for (auto *FoundDecl : FoundDecls) { in VisitNamespaceDecl()
2890 auto FoundDecls = in VisitEnumDecl() local
3008 auto FoundDecls = in VisitRecordDecl() local
3010 if (!FoundDecls.empty()) { in VisitRecordDecl()
4040 for (auto *FoundDecl : FoundDecls) { in VisitFieldDecl()
4331 for (auto *FoundDecl : FoundDecls) { in VisitObjCIvarDecl()
4650 for (auto *FoundDecl : FoundDecls) { in VisitObjCMethodDecl()
4966 for (auto *FoundDecl : FoundDecls) { in VisitObjCProtocolDecl()
5490 for (auto *FoundDecl : FoundDecls) { in VisitObjCInterfaceDecl()
5663 for (auto *FoundDecl : FoundDecls) { in VisitObjCPropertyDecl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp182 llvm::SmallVector<NamedDecl*, 8> FoundDecls; in getDestructorName() local
217 FoundDecls.push_back(D); in getDestructorName()
375 unsigned NumNonExtensionDecls = FoundDecls.size(); in getDestructorName()
401 Diag(FoundDecls.back()->getLocation(), diag::note_destructor_type_here) in getDestructorName()
412 FoundDecls.resize(NumNonExtensionDecls); in getDestructorName()
415 std::stable_sort(FoundDecls.begin(), FoundDecls.end(), in getDestructorName()
435 if (FoundDecls.empty()) { in getDestructorName()
439 } else if (!SearchType.isNull() && FoundDecls.size() == 1) { in getDestructorName()
440 if (auto *TD = dyn_cast<TypeDecl>(FoundDecls[0]->getUnderlyingDecl())) { in getDestructorName()
456 for (NamedDecl *FoundD : FoundDecls) { in getDestructorName()