Home
last modified time | relevance | path

Searched refs:Typedef (Results 1 – 25 of 54) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeTypedef.cpp10 codeview::UDTSym Typedef) in NativeTypeTypedef() argument
11 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id), in NativeTypeTypedef()
12 Record(std::move(Typedef)) {} in NativeTypeTypedef()
H A DNativeExeSymbol.cpp58 case PDB_SymType::Typedef: in findChildren()
/freebsd-14.2/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp461 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 Dlldb-private-enumerations.h200 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 DPrettyTypeDumper.cpp158 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 DNativeTypeTypedef.h29 codeview::UDTSym Typedef);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolTypeTypedef.h20 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Typedef)
H A DPDBTypes.h261 Typedef, enumerator
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSerializerBase.h226 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 DDWARFDIE.cpp420 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 DTypeBitCodes.def27 TYPE_BIT_CODE(Typedef, TYPEDEF, 16)
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
H A DSymbolGraphSerializer.cpp1221 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 DSemaTemplateInstantiateDecl.cpp1014 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 DPDBSymbol.cpp82 FACTORY_SYMTAG_CASE(Typedef, PDBSymbolTypeTypedef) in createSymbol()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDeclNodes.td24 def Typedef : DeclNode<TypedefName>;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp471 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 DTypePrinter.cpp227 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 DFormatString.cpp1085 const TypedefNameDecl *Typedef = TT->getDecl(); in namedTypeToLengthModifier() local
1086 const IdentifierInfo *Identifier = Typedef->getIdentifier(); in namedTypeToLengthModifier()
H A DComment.cpp333 case Decl::Typedef: in fill()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp187 case Decl::Kind::Typedef: in HandleNamedDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp361 case Decl::Typedef: in isRedeclarableDeclKind()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2587 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 DType.cpp82 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 DClangASTImporter.cpp402 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 DCommentCommands.td332 def Typedef : DeclarationVerbatimLineCommand<"typedef">;

123