Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3785 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 DRecursiveASTVisitor.h1709 DEF_TRAVERSE_DECL(UsingPackDecl, {})
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3198 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 DASTImporter.cpp502 ExpectedDecl VisitUsingPackDecl(UsingPackDecl *D);
5226 ExpectedDecl ASTNodeImporter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5244 UsingPackDecl *ToUsingPack; in VisitUsingPackDecl()
H A DASTContext.cpp6716 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 DASTReaderDecl.cpp410 void VisitUsingPackDecl(UsingPackDecl *D);
1911 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
3867 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp120 void VisitUsingPackDecl(UsingPackDecl *D);
1390 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp150 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp3522 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5980 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
H A DSemaDeclCXX.cpp12502 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 DTreeTransform.h12731 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls()
15144 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
H A DSemaOverload.cpp1180 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()