Searched refs:PDB_UdtType (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp51 if (getUdtKind() != PDB_UdtType::Union)
109 PDB_UdtType NativeTypeUDT::getUdtKind() const {
115 return PDB_UdtType::Class;
117 return PDB_UdtType::Union;
119 return PDB_UdtType::Struct;
121 return PDB_UdtType::Interface;
H A DNativeRawSymbol.cpp404 PDB_UdtType NativeRawSymbol::getUdtKind() const {
405 return PDB_UdtType::Struct;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeUDT.h43 PDB_UdtType getUdtKind() const override;
H A DNativeRawSymbol.h147 PDB_UdtType getUdtKind() const override;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBExtras.h38 raw_ostream &operator<<(raw_ostream &OS, const PDB_UdtType &Type);
H A DIPDBRawSymbol.h169 virtual PDB_UdtType getUdtKind() const = 0;
H A DPDBTypes.h310 enum class PDB_UdtType { Struct, Class, Union, Interface }; class in class:llvm::pdb::PDB_Checksum
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp284 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const PDB_UdtType &Type) {
286 CASE_OUTPUT_ENUM_CLASS_STR(PDB_UdtType, Class, "class", OS)
287 CASE_OUTPUT_ENUM_CLASS_STR(PDB_UdtType, Struct, "struct", OS)
288 CASE_OUTPUT_ENUM_CLASS_STR(PDB_UdtType, Interface, "interface", OS)
289 CASE_OUTPUT_ENUM_CLASS_STR(PDB_UdtType, Union, "union", OS)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp46 static int TranslateUdtKind(PDB_UdtType pdb_kind) {
48 case PDB_UdtType::Class:
50 case PDB_UdtType::Struct:
52 case PDB_UdtType::Union:
54 case PDB_UdtType::Interface:
221 static AccessType GetDefaultAccessibilityForUdtKind(PDB_UdtType udt_kind) {
223 case PDB_UdtType::Struct:
224 case PDB_UdtType::Union:
226 case PDB_UdtType::Class:
227 case PDB_UdtType
[all...]
H A DSymbolFilePDB.cpp1596 can_parse = (udt->getUdtKind() != PDB_UdtType::Interface &&
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIARawSymbol.h142 PDB_UdtType getUdtKind() const override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp311 RAW_METHOD_DUMP_AS(OS, udtKind, PDB_UdtType);
933 PDB_UdtType DIARawSymbol::getUdtKind() const {
934 return PrivateGetDIAValue<DWORD, PDB_UdtType>(Symbol,

Completed in 176 milliseconds