Searched refs:UsingPackDecl (Results 1 – 12 of 12) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 3785 class UsingPackDecl final 3786 : public NamedDecl, public Mergeable<UsingPackDecl>, 3787 private llvm::TrailingObjects<UsingPackDecl, NamedDecl *> { 3795 UsingPackDecl(DeclContext *DC, NamedDecl *InstantiatedFrom, in UsingPackDecl() function 3825 static UsingPackDecl *Create(ASTContext &C, DeclContext *DC, 3829 static UsingPackDecl *CreateDeserialized(ASTContext &C, unsigned ID, 3836 UsingPackDecl *getCanonicalDecl() override { return getFirstDecl(); } in getCanonicalDecl() 3837 const UsingPackDecl *getCanonicalDecl() const { return getFirstDecl(); } in getCanonicalDecl()
|
| H A D | RecursiveASTVisitor.h | 1709 DEF_TRAVERSE_DECL(UsingPackDecl, {})
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3198 void UsingPackDecl::anchor() {} in anchor() 3200 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3204 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); in Create() 3207 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID, in CreateDeserialized() 3211 new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, std::nullopt); in CreateDeserialized()
|
| H A D | ASTImporter.cpp | 502 ExpectedDecl VisitUsingPackDecl(UsingPackDecl *D); 5226 ExpectedDecl ASTNodeImporter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 5244 UsingPackDecl *ToUsingPack; in VisitUsingPackDecl()
|
| H A D | ASTContext.cpp | 6716 if (const auto *UX = dyn_cast<UsingPackDecl>(X)) { in isSameEntity() 6719 cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl()); in isSameEntity()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 410 void VisitUsingPackDecl(UsingPackDecl *D); 1911 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 3867 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 120 void VisitUsingPackDecl(UsingPackDecl *D); 1390 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 150 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 3522 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 5980 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
|
| H A D | SemaDeclCXX.cpp | 12502 if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D) || isa<UsingEnumDecl>(D)) in CheckUsingShadowDecl() 13146 isa<UsingPackDecl>(InstantiatedFrom)); in BuildUsingPackDecl() 13149 UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions); in BuildUsingPackDecl() 13208 if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) { in CheckUsingDeclRedeclaration()
|
| H A D | TreeTransform.h | 12731 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls() 15144 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
|
| H A D | SemaOverload.cpp | 1180 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()
|