Home
last modified time | relevance | path

Searched refs:TypeAliasDecl (Results 1 – 25 of 28) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComment.cpp330 : cast<TypeAliasDecl>(CommentDecl)->getTypeSourceInfo(); in fill()
347 TypeAliasDecl *TAD = TAT->getTemplatedDecl(); in fill()
H A DDecl.cpp4996 TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC, in Create()
5000 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create()
5003 TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
5004 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(), in CreateDeserialized()
5017 SourceRange TypeAliasDecl::getSourceRange() const { in getSourceRange()
H A DDeclPrinter.cpp63 void VisitTypeAliasDecl(TypeAliasDecl *D);
518 void DeclPrinter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
H A DODRHash.cpp359 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
H A DDeclBase.cpp237 if (auto *AD = dyn_cast<TypeAliasDecl>(this)) in getDescribedTemplate()
H A DJSONNodeDumper.cpp725 void JSONNodeDumper::VisitTypeAliasDecl(const TypeAliasDecl *TAD) { in VisitTypeAliasDecl()
H A DTextNodeDumper.cpp1843 void TextNodeDumper::VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
H A DASTImporter.cpp488 ExpectedDecl VisitTypeAliasDecl(TypeAliasDecl *D);
2522 if (GetImportedOrCreateDecl<TypeAliasDecl>( in VisitTypedefNameDecl()
2542 TypeAliasDecl *FromAlias = IsAlias ? cast<TypeAliasDecl>(D) : nullptr; in VisitTypedefNameDecl()
2553 ExpectedDecl ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
H A DMicrosoftMangle.cpp1648 } else if (isa<TypeAliasDecl>(ND)) { in mangleTemplateArg()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCursorVisitor.h200 bool VisitTypeAliasDecl(TypeAliasDecl *D);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTextNodeDumper.h340 void VisitTypeAliasDecl(const TypeAliasDecl *D);
H A DJSONNodeDumper.h232 void VisitTypeAliasDecl(const TypeAliasDecl *TAD);
H A DDecl.h3263 class TypeAliasDecl : public TypedefNameDecl {
3267 TypeAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypeAliasDecl() function
3273 static TypeAliasDecl *Create(ASTContext &C, DeclContext *DC,
3276 static TypeAliasDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DASTNodeTraverser.h511 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
H A DDeclTemplate.h2537 TypeAliasDecl *getTemplatedDecl() const {
2538 return static_cast<TypeAliasDecl *>(TemplatedDecl);
H A DRecursiveASTVisitor.h1823 DEF_TRAVERSE_DECL(TypeAliasDecl, {
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp879 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), in InstantiateTypedefNameDecl()
929 Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
947 TypeAliasDecl *Pattern = D->getTemplatedDecl(); in VisitTypeAliasTemplateDecl()
957 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>( in VisitTypeAliasTemplateDecl()
H A DSema.cpp933 << isa<TypeAliasDecl>(TD) << TD->getDeclName(); in emitAndClearUnusedLocalTypedefWarnings()
H A DSemaDecl.cpp2204 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
2217 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef()
4532 << isa<TypeAliasDecl>(NewTD) in setTagNameForLinkagePurposes()
4539 << NewTD << isa<TypeAliasDecl>(NewTD); in setTagNameForLinkagePurposes()
7530 if (isa<TypeAliasDecl>(ShadowedDecl)) in computeShadowedDeclKind()
15262 else if (isa<TypeAliasDecl>(PrevDecl)) in getNonTagTypeDeclKind()
16152 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; in ActOnTag()
H A DSemaTemplate.cpp2109 if (isa<TypeAliasDecl>(OrigDecl)) in TransformTypedefType()
2110 Decl = TypeAliasDecl::Create( in TransformTypedefType()
3697 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl(); in CheckTemplateIdType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp731 const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl> typeAliasDecl;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp329 void VisitTypeAliasDecl(TypeAliasDecl *TD);
696 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) { in VisitTypeAliasDecl()
2575 if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern)) in mergeTemplatePattern()
3803 D = TypeAliasDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp69 void VisitTypeAliasDecl(TypeAliasDecl *D);
401 void ASTDeclWriter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1572 bool WalkUpFromTypeAliasDecl(TypeAliasDecl *S) { in WalkUpFromTypeAliasDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h216 extern const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl>

12