| /llvm-project-15.0.7/clang/test/AST/ |
| H A D | attr-swift_bridged_typedef.mm | 7 // CHECK: TypeAliasDecl {{.*}} NSStringAlias 'NSString *'
|
| H A D | ast-dump-decl.mm | 84 // CHECK: TypeAliasDecl {{.+}} <{{.+}}:[[@LINE-1]]:1, col:40> col:7 TestObjCPointerWithoutStar… 87 // CHECK: TypeAliasDecl {{.+}} <{{.+}}:[[@LINE-1]]:1, col:35> col:7 TestObjCPointerWithStar 'A…
|
| /llvm-project-15.0.7/clang/test/SemaOpenCLCXX/ |
| H A D | address-space-deduction.clcpp | 22 //CHECK: TypeAliasDecl {{.*}} alias_c1 'c1' 24 //CHECK: TypeAliasDecl {{.*}} alias_c1_ptr '__generic c1 *'
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | MisplacedConstCheck.cpp | 60 Result.Nodes.getNodeAs<TypeAliasDecl>("typeAlias")) { in check()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | HLSLExternalSemaSource.cpp | 83 auto *Record = TypeAliasDecl::Create(AST, HLSLNamespace, SourceLocation(), in defineHLSLVectorAlias()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 968 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), in InstantiateTypedefNameDecl() 1019 Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl() 1037 TypeAliasDecl *Pattern = D->getTemplatedDecl(); in VisitTypeAliasTemplateDecl() 1047 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>( in VisitTypeAliasTemplateDecl()
|
| /llvm-project-15.0.7/clang/test/AST/HLSL/ |
| H A D | vector-alias.hlsl | 11 // CHECK-NEXT: TypeAliasDecl 0x{{[0-9a-fA-F]+}} <<invalid sloc>> <invalid sloc> implicit vector 'el…
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CursorVisitor.h | 206 bool VisitTypeAliasDecl(TypeAliasDecl *D);
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/ |
| H A D | UpgradeGoogletestCaseCheck.cpp | 330 assert(Result.Nodes.getNodeAs<TypeAliasDecl>("test-case") != nullptr); in check()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Comment.cpp | 338 if (TypeAliasDecl *TAD = TAT->getTemplatedDecl()) in fill()
|
| H A D | Decl.cpp | 5139 TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC, in Create() 5143 return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create() 5146 TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 5147 return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(), in CreateDeserialized() 5160 SourceRange TypeAliasDecl::getSourceRange() const { in getSourceRange()
|
| H A D | DeclPrinter.cpp | 63 void VisitTypeAliasDecl(TypeAliasDecl *D); 520 void DeclPrinter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | ODRHash.cpp | 360 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | DeclBase.cpp | 237 if (auto *AD = dyn_cast<TypeAliasDecl>(this)) in getDescribedTemplate()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | TextNodeDumper.h | 349 void VisitTypeAliasDecl(const TypeAliasDecl *D);
|
| H A D | JSONNodeDumper.h | 234 void VisitTypeAliasDecl(const TypeAliasDecl *TAD);
|
| H A D | Decl.h | 3340 class TypeAliasDecl : public TypedefNameDecl { 3344 TypeAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypeAliasDecl() function 3350 static TypeAliasDecl *Create(ASTContext &C, DeclContext *DC, 3353 static TypeAliasDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
| H A D | ASTNodeTraverser.h | 542 void VisitTypeAliasDecl(const TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| H A D | DeclTemplate.h | 2567 TypeAliasDecl *getTemplatedDecl() const { 2568 return static_cast<TypeAliasDecl *>(TemplatedDecl);
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 330 void VisitTypeAliasDecl(TypeAliasDecl *TD); 712 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) { in VisitTypeAliasDecl() 2701 if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern)) in mergeTemplatePattern() 3577 D = TypeAliasDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 69 void VisitTypeAliasDecl(TypeAliasDecl *D); 404 void ASTDeclWriter::VisitTypeAliasDecl(TypeAliasDecl *D) { in VisitTypeAliasDecl()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-move/ |
| H A D | Move.cpp | 198 Result.Nodes.getNodeAs<TypeAliasDecl>("type_alias")) { in run()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 731 const internal::VariadicDynCastAllOfMatcher<Decl, TypeAliasDecl> typeAliasDecl;
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | IdentifierNamingCheck.cpp | 1082 if (isa<TypeAliasDecl>(D) && NamingStyles[SK_TypeAlias]) in findStyleKind()
|
| /llvm-project-15.0.7/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1577 bool WalkUpFromTypeAliasDecl(TypeAliasDecl *S) { in WalkUpFromTypeAliasDecl()
|