Searched refs:UsingPackDecl (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclCXX.h | 3799 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 D | RecursiveASTVisitor.h | 1764 DEF_TRAVERSE_DECL(UsingPackDecl, {})
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclCXX.cpp | 3230 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 D | ASTImporter.cpp | 503 ExpectedDecl VisitUsingPackDecl(UsingPackDecl *D); 5310 ExpectedDecl ASTNodeImporter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 5328 UsingPackDecl *ToUsingPack; in VisitUsingPackDecl()
|
H A D | ASTContext.cpp | 7165 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 D | ASTReaderDecl.cpp | 405 void VisitUsingPackDecl(UsingPackDecl *D); 1898 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 3892 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 123 void VisitUsingPackDecl(UsingPackDecl *D); 1428 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDecl.cpp | 153 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateInstantiateDecl.cpp | 3572 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl() 5962 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
|
H A D | SemaDeclCXX.cpp | 12416 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 D | TreeTransform.h | 13597 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls() 16177 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
|
H A D | SemaOverload.cpp | 1225 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()
|