Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h3535 class UsingPackDecl final
3536 : public NamedDecl, public Mergeable<UsingPackDecl>,
3537 private llvm::TrailingObjects<UsingPackDecl, NamedDecl *> {
3545 UsingPackDecl(DeclContext *DC, NamedDecl *InstantiatedFrom, in UsingPackDecl() function
3575 static UsingPackDecl *Create(ASTContext &C, DeclContext *DC,
3579 static UsingPackDecl *CreateDeserialized(ASTContext &C, unsigned ID,
3586 UsingPackDecl *getCanonicalDecl() override { return getFirstDecl(); } in getCanonicalDecl()
3587 const UsingPackDecl *getCanonicalDecl() const { return getFirstDecl(); } in getCanonicalDecl()
H A DRecursiveASTVisitor.h1596 DEF_TRAVERSE_DECL(UsingPackDecl, {})
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp3083 void UsingPackDecl::anchor() {} in anchor()
3085 UsingPackDecl *UsingPackDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3089 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls); in Create()
3092 UsingPackDecl *UsingPackDecl::CreateDeserialized(ASTContext &C, unsigned ID, in CreateDeserialized()
3095 auto *Result = new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, None); in CreateDeserialized()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp116 void VisitUsingPackDecl(UsingPackDecl *D);
1280 void ASTDeclWriter::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
H A DASTReaderDecl.cpp392 void VisitUsingPackDecl(UsingPackDecl *D);
1654 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
3836 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp3208 Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) { in VisitUsingPackDecl()
5646 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) { in isInstantiationOfUnresolvedUsingDecl()
H A DSemaDeclCXX.cpp11707 if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D)) in CheckUsingShadowDecl()
12261 isa<UsingPackDecl>(InstantiatedFrom)); in BuildUsingPackDecl()
12264 UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions); in BuildUsingPackDecl()
12323 if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) { in CheckUsingDeclRedeclaration()
H A DTreeTransform.h11960 if (auto *UPD = dyn_cast<UsingPackDecl>(InstD)) in TransformOverloadExprDecls()
14327 if (auto *UPD = dyn_cast<UsingPackDecl>(D)) { in RebuildUnresolvedUsingType()
H A DSemaOverload.cpp1083 } else if (isa<UsingDecl>(OldD) || isa<UsingPackDecl>(OldD)) { in CheckOverload()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp141 for (auto *Using : cast<UsingPackDecl>(D).expansions()) in EmitDecl()