Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3799 class UsingPackDecl final
3800 : public NamedDecl, public Mergeable<UsingPackDecl>,
3801 private llvm::TrailingObjects<UsingPackDecl, NamedDecl *> {
3809 UsingPackDecl(DeclContext *DC, NamedDecl *InstantiatedFrom, in UsingPackDecl() function
3839 static UsingPackDecl *Create(ASTContext &C, DeclContext *DC,
3843 static UsingPackDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID,
3850 UsingPackDecl *getCanonicalDecl() override { return getFirstDecl(); } in getCanonicalDecl()
3851 const UsingPackDecl *getCanonicalDecl() const { return getFirstDecl(); } in getCanonicalDecl()
H A DRecursiveASTVisitor.h1764 DEF_TRAVERSE_DECL(UsingPackDecl, {})
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3230 void UsingPackDecl::anchor() {} in anchor()
3232 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3236 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); in Create()
3239 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID, in CreateDeserialized()
3243 new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, std::nullopt); in CreateDeserialized()
H A DASTImporter.cpp503 ExpectedDecl VisitUsingPackDecl(UsingPackDecl *D);
5310 ExpectedDecl ASTNodeImporter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5328 UsingPackDecl *ToUsingPack; in VisitUsingPackDecl()
H A DASTContext.cpp7165 if (const auto *UX = dyn_cast<UsingPackDecl>(X)) { in isSameEntity()
7168 cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl()); in isSameEntity()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp405 void VisitUsingPackDecl(UsingPackDecl *D);
1898 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
3892 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp123 void VisitUsingPackDecl(UsingPackDecl *D);
1428 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp153 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp3572 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5962 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
H A DSemaDeclCXX.cpp12416 if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D) || isa<UsingEnumDecl>(D)) in CheckUsingShadowDecl()
13025 isa<UsingPackDecl>(InstantiatedFrom)); in BuildUsingPackDecl()
13028 UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions); in BuildUsingPackDecl()
13083 if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DTreeTransform.h13597 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls()
16177 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
H A DSemaOverload.cpp1225 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()