| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Comment.cpp | 349 if (TypeAliasDecl *TAD = TAT->getTemplatedDecl()) in fill()
|
| H A D | Decl.cpp | 5695 TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC, in Create() 5700 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create() 5703 TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 5705 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(), in CreateDeserialized() 5718 SourceRange TypeAliasDecl::getSourceRange() const { in getSourceRange()
|
| H A D | DeclPrinter.cpp | 65 void VisitTypeAliasDecl(TypeAliasDecl *D); 592 void DeclPrinter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | ODRHash.cpp | 471 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | DeclBase.cpp | 274 if (auto *AD = dyn_cast<TypeAliasDecl>(this)) in getDescribedTemplate()
|
| H A D | JSONNodeDumper.cpp | 879 void JSONNodeDumper::VisitTypeAliasDecl(const TypeAliasDecl *TAD) { in VisitTypeAliasDecl()
|
| H A D | ASTImporter.cpp | 525 ExpectedDecl VisitTypeAliasDecl(TypeAliasDecl *D); 3048 if (GetImportedOrCreateDecl<TypeAliasDecl>( in VisitTypedefNameDecl() 3068 TypeAliasDecl *FromAlias = IsAlias ? cast<TypeAliasDecl>(D) : nullptr; in VisitTypedefNameDecl() 3079 ExpectedDecl ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | TextNodeDumper.cpp | 2562 void TextNodeDumper::VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | MicrosoftMangle.cpp | 1924 } else if (isa<TypeAliasDecl>(ND)) { in mangleTemplateArg()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateDeductionGuide.cpp | 161 OrigDecl, /*IsTypeAlias=*/isa<TypeAliasDecl>(OrigDecl))); in TransformTypedefType() 170 if (isa<TypeAliasDecl>(OrigDecl)) in TransformTypedefType() 171 Decl = TypeAliasDecl::Create( in TransformTypedefType()
|
| H A D | HLSLExternalSemaSource.cpp | 109 auto *Record = TypeAliasDecl::Create(AST, HLSLNamespace, SourceLocation(), in defineHLSLVectorAlias()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 1475 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), in InstantiateTypedefNameDecl() 1526 Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl() 1544 TypeAliasDecl *Pattern = D->getTemplatedDecl(); in InstantiateTypeAliasTemplateDecl() 1563 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>( in InstantiateTypeAliasTemplateDecl()
|
| H A D | SemaDecl.cpp | 2461 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef() 2474 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; in isIncompatibleTypedef() 5064 << isa<TypeAliasDecl>(NewTD) in setTagNameForLinkagePurposes() 5071 << NewTD << isa<TypeAliasDecl>(NewTD); in setTagNameForLinkagePurposes() 8296 if (isa<TypeAliasDecl>(ShadowedDecl)) in computeShadowedDeclKind() 17262 else if (isa<TypeAliasDecl>(PrevDecl)) in getNonTagTypeDeclKind() 18220 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; in ActOnTag()
|
| H A D | Sema.cpp | 1161 << isa<TypeAliasDecl>(TD) << TD->getDeclName(); in emitAndClearUnusedLocalTypedefWarnings()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TextNodeDumper.h | 376 void VisitTypeAliasDecl(const TypeAliasDecl *D);
|
| H A D | JSONNodeDumper.h | 249 void VisitTypeAliasDecl(const TypeAliasDecl *TAD);
|
| H A D | Decl.h | 3646 class TypeAliasDecl : public TypedefNameDecl { 3650 TypeAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypeAliasDecl() function 3657 static TypeAliasDecl *Create(ASTContext &C, DeclContext *DC, 3660 static TypeAliasDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID);
|
| H A D | ASTNodeTraverser.h | 679 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | DeclTemplate.h | 2558 TypeAliasDecl *getTemplatedDecl() const { 2559 return static_cast<TypeAliasDecl *>(TemplatedDecl);
|
| H A D | RecursiveASTVisitor.h | 2017 DEF_TRAVERSE_DECL(TypeAliasDecl, {
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 329 void VisitTypeAliasDecl(TypeAliasDecl *TD); 723 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) { in VisitTypeAliasDecl() 2965 if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern)) in mergeTemplatePattern() 3936 D = TypeAliasDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 85 void VisitTypeAliasDecl(TypeAliasDecl *D); 633 void ASTDeclWriter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 757 const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl> typeAliasDecl;
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1570 bool WalkUpFromTypeAliasDecl(TypeAliasDecl *S) { in WalkUpFromTypeAliasDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 222 extern const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl>
|