| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeTypedef.cpp | 10 codeview::UDTSym Typedef) in NativeTypeTypedef() argument 11 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id), in NativeTypeTypedef() 12 Record(std::move(Typedef)) {} in NativeTypeTypedef()
|
| H A D | NativeExeSymbol.cpp | 58 case PDB_SymType::Typedef: in findChildren()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 461 struct Typedef { struct 471 typedef std::vector<Typedef> TypedefsSeq; 474 LLVM_YAML_IS_SEQUENCE_VECTOR(Typedef) 486 template <> struct MappingTraits<Typedef> { 487 static void mapping(IO &IO, Typedef &T) { in mapping() 1052 for (const auto &Typedef : TLItems.Typedefs) { in convertTopLevelItems() local 1054 if (!KnownTypedefs.insert(Typedef.Name).second) { in convertTopLevelItems() 1056 Typedef.Name + "'"); in convertTopLevelItems() 1061 convertCommonType(Typedef, TInfo, Typedef.Name); in convertTopLevelItems() 1062 TInfo.SwiftWrapper = Typedef.SwiftType; in convertTopLevelItems() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-private-enumerations.h | 200 Typedef = 1 << 9, enumerator 207 AnyType = Any | Class | Struct | Union | Enum | Typedef | Builtin,
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyTypeDumper.cpp | 158 const PDBSymbolTypeTypedef &Typedef) { in isTypeExcluded() argument 159 return Printer.IsTypeExcluded(Typedef.getName(), Typedef.getLength()); in isTypeExcluded()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | NativeTypeTypedef.h | 29 codeview::UDTSym Typedef);
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbolTypeTypedef.h | 20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Typedef)
|
| H A D | PDBTypes.h | 261 Typedef, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/ |
| H A D | SerializerBase.h | 226 for (const auto &Typedef : API.getTypedefs()) in traverseTypedefRecords() local 227 getDerived()->visitTypedefRecord(*Typedef.second); in traverseTypedefRecords()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDIE.cpp | 420 push_ctx(CompilerContextKind::Typedef, die.GetName()); in GetDeclContextImpl() 470 push_ctx(CompilerContextKind::Typedef, name); in GetTypeLookupContext()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | TypeBitCodes.def | 27 TYPE_BIT_CODE(Typedef, TYPEDEF, 16)
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 1221 auto Typedef = serializeAPIRecord(Record); in visitTypedefRecord() local 1222 if (!Typedef) in visitTypedefRecord() 1225 (*Typedef)["type"] = Record.UnderlyingType.USR; in visitTypedefRecord() 1227 Symbols.emplace_back(std::move(*Typedef)); in visitTypedefRecord()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 1014 TypedefNameDecl *Typedef; in InstantiateTypedefNameDecl() local 1022 Typedef->setInvalidDecl(); in InstantiateTypedefNameDecl() 1054 Typedef->setAccess(D->getAccess()); in InstantiateTypedefNameDecl() 1055 Typedef->setReferenced(D->isReferenced()); in InstantiateTypedefNameDecl() 1057 return Typedef; in InstantiateTypedefNameDecl() 1062 if (Typedef) in VisitTypedefDecl() 1063 Owner->addDecl(Typedef); in VisitTypedefDecl() 1064 return Typedef; in VisitTypedefDecl() 1069 if (Typedef) in VisitTypeAliasDecl() 1070 Owner->addDecl(Typedef); in VisitTypeAliasDecl() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbol.cpp | 82 FACTORY_SYMTAG_CASE(Typedef, PDBSymbolTypeTypedef) in createSymbol()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DeclNodes.td | 24 def Typedef : DeclNode<TypedefName>;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 471 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef, in ParseTypes() 481 case PDB_SymType::Typedef: in ParseTypes() 1475 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef, in FindTypesByRegex() 1543 case PDB_SymType::Typedef: in FindTypes() 1596 case PDB_SymType::Typedef: in GetTypesForPDBSymbol()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | TypePrinter.cpp | 227 case Type::Typedef: in canPrefixQualifiers() 1348 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl()) in AppendScope() local 1349 OS << Typedef->getIdentifier()->getName() << "::"; in AppendScope() 1386 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) { in printTag() local 1387 assert(Typedef->getIdentifier() && "Typedef without identifier?"); in printTag() 1388 OS << Typedef->getIdentifier()->getName(); in printTag()
|
| H A D | FormatString.cpp | 1085 const TypedefNameDecl *Typedef = TT->getDecl(); in namedTypeToLengthModifier() local 1086 const IdentifierInfo *Identifier = Typedef->getIdentifier(); in namedTypeToLengthModifier()
|
| H A D | Comment.cpp | 333 case Decl::Typedef: in fill()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InterfaceStubFunctionsConsumer.cpp | 187 case Decl::Kind::Typedef: in HandleNamedDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 361 case Decl::Typedef: in isRedeclarableDeclKind()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2587 case clang::Type::Typedef: 3955 case clang::Type::Typedef: in GetTypeInfo() 4056 case clang::Type::Typedef: in GetMinimumLanguage() 4145 case clang::Type::Typedef: in GetTypeClass() 4757 case clang::Type::Typedef: in GetEncoding() 5086 case clang::Type::Typedef: in GetFormat() 8570 case clang::Type::Typedef: { in DumpTypeValue() 8719 case clang::Type::Typedef: { in DumpTypeDescription() 8812 case clang::Type::Typedef: in DumpTypeName() 9008 case Decl::Typedef: in GetCompilerKind() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 82 result |= (uint16_t)CompilerContextKind::Typedef; in ConvertTypeClass() 224 case CompilerContextKind::Typedef: in Dump()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 402 case clang::Type::Typedef: in CanImport() 476 case clang::Type::Typedef: in Import()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentCommands.td | 332 def Typedef : DeclarationVerbatimLineCommand<"typedef">;
|