Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3643 class UsingPackDecl final
3644 : public NamedDecl, public Mergeable<UsingPackDecl>,
3645 private llvm::TrailingObjects<UsingPackDecl, NamedDecl *> {
3653 UsingPackDecl(DeclContext *DC, NamedDecl *InstantiatedFrom, in UsingPackDecl() function
3683 static UsingPackDecl *Create(ASTContext &C, DeclContext *DC,
3687 static UsingPackDecl *CreateDeserialized(ASTContext &C, unsigned ID,
3694 UsingPackDecl *getCanonicalDecl() override { return getFirstDecl(); } in getCanonicalDecl()
3695 const UsingPackDecl *getCanonicalDecl() const { return getFirstDecl(); } in getCanonicalDecl()
H A DRecursiveASTVisitor.h1608 DEF_TRAVERSE_DECL(UsingPackDecl, {})
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3088 void UsingPackDecl::anchor() {} in anchor()
3090 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3094 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); in Create()
3097 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID, in CreateDeserialized()
3100 auto *Result = new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, None); in CreateDeserialized()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp394 void VisitUsingPackDecl(UsingPackDecl *D);
1667 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
3272 if (const auto *UX = dyn_cast<UsingPackDecl>(X)) { in isSameEntity()
3275 cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl()); in isSameEntity()
3863 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp118 void VisitUsingPackDecl(UsingPackDecl *D);
1292 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp146 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp3332 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5838 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
H A DSemaDeclCXX.cpp11755 if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D) || isa<UsingEnumDecl>(D)) in CheckUsingShadowDecl()
12398 isa<UsingPackDecl>(InstantiatedFrom)); in BuildUsingPackDecl()
12401 UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions); in BuildUsingPackDecl()
12460 if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DTreeTransform.h12039 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls()
14392 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
H A DSemaOverload.cpp1083 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()