| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTStructuralEquivalence.cpp | 1415 if (!Name1 && D1->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent() 1416 Name1 = D1->getTypedefNameForAnonDecl()->getIdentifier(); in IsStructurallyEquivalent() 1418 if (!Name2 && D2->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent() 1419 Name2 = D2->getTypedefNameForAnonDecl()->getIdentifier(); in IsStructurallyEquivalent() 1686 if (!Name1 && D1->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent() 1687 Name1 = D1->getTypedefNameForAnonDecl()->getIdentifier(); in IsStructurallyEquivalent() 1689 if (!Name2 && D2->getTypedefNameForAnonDecl()) in IsStructurallyEquivalent() 1690 Name2 = D2->getTypedefNameForAnonDecl()->getIdentifier(); in IsStructurallyEquivalent()
|
| H A D | TypePrinter.cpp | 1304 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) in AppendScope() 1328 if (!Policy.SuppressTagKeyword && !D->getTypedefNameForAnonDecl()) { in printTag() 1342 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { in printTag()
|
| H A D | ASTDiagnostic.cpp | 203 if (UTT->getDecl()->getTypedefNameForAnonDecl() == QTT->getDecl()) in desugarForDiagnostic()
|
| H A D | ASTImporter.cpp | 1996 if (TypedefNameDecl *FromTypedef = From->getTypedefNameForAnonDecl()) { in setTypedefNameForAnonDecl() 2701 if (!SearchName && D->getTypedefNameForAnonDecl()) { in VisitEnumDecl() 2703 SearchName, D->getTypedefNameForAnonDecl()->getDeclName())) in VisitEnumDecl() 2815 if (!SearchName && D->getTypedefNameForAnonDecl()) { in VisitRecordDecl() 2817 SearchName, D->getTypedefNameForAnonDecl()->getDeclName())) in VisitRecordDecl()
|
| H A D | ItaniumMangle.cpp | 142 if (Tag->getName().empty() && !Tag->getTypedefNameForAnonDecl()) in getNextDiscriminator() 1542 if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) { in mangleUnqualifiedName()
|
| H A D | MicrosoftMangle.cpp | 1036 if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) { in mangleUnqualifiedName()
|
| H A D | Decl.cpp | 5099 auto *OwningTypedef = TT->getDecl()->getTypedefNameForAnonDecl(); in getAnonDeclWithTypedefName()
|
| /llvm-project-15.0.7/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 455 if (const auto *TypedefNameDecl = EnumDecl->getTypedefNameForAnonDecl()) in getFragmentsForEnum() 486 if (const auto *TypedefNameDecl = Record->getTypedefNameForAnonDecl()) in getFragmentsForStruct()
|
| H A D | ExtractAPIConsumer.cpp | 55 if (const auto *TypedefDecl = Decl->getTypedefNameForAnonDecl()) in getTypedefName()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | ProTypeMemberInitCheck.cpp | 80 if (const TypedefNameDecl *Typedef = Record->getTypedefNameForAnonDecl()) in getName()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-doc/ |
| H A D | Serialize.cpp | 529 if (const TypedefNameDecl *TD = C->getTypedefNameForAnonDecl()) { in emitInfo()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 71 } else if (const TypedefNameDecl *TDD = RD->getTypedefNameForAnonDecl()) { in addRecordTypeName()
|
| H A D | CGDebugInfo.cpp | 305 if (const TypedefNameDecl *D = RD->getTypedefNameForAnonDecl()) { in getClassName()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 425 } else if (auto *TD = D->getTypedefNameForAnonDecl()) { in VisitTagDecl() 460 !D->getTypedefNameForAnonDecl() && in VisitEnumDecl() 497 !D->getTypedefNameForAnonDecl() && in VisitRecordDecl()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 550 if (const TypedefNameDecl *TD = D->getTypedefNameForAnonDecl()) { in VisitTagDecl()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CXType.cpp | 1277 return TD->getTypedefNameForAnonDecl() == nullptr && in clang_Cursor_isAnonymous()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Decl.h | 3591 return (getDeclName() || getTypedefNameForAnonDecl()); in hasNameForLinkage() 3594 TypedefNameDecl *getTypedefNameForAnonDecl() const { in getTypedefNameForAnonDecl() function
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1199 !CondEnumType->getDecl()->getTypedefNameForAnonDecl()) in checkEnumTypesInSwitchStmt() 1202 !CaseEnumType->getDecl()->getTypedefNameForAnonDecl()) in checkEnumTypesInSwitchStmt()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 980 if (oldTag->getTypedefNameForAnonDecl() == D && !Invalid) { in InstantiateTypedefNameDecl()
|
| H A D | SemaChecking.cpp | 17378 if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl()) in DiagnoseMisalignedMembers()
|
| H A D | SemaDecl.cpp | 4783 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl()) in handleTagNumbering()
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | ASTImporterTest.cpp | 2897 if (auto *Typedef = Node.getTypedefNameForAnonDecl()) in AST_MATCHER_P()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 4636 if (tdecl && !tdecl->getIdentifier() && !tdecl->getTypedefNameForAnonDecl()) in CreateTypedef()
|