reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
  173   virtual PDB_UdtType getUdtKind() const = 0;
include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
  147   PDB_UdtType getUdtKind() const override;
include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
   43   PDB_UdtType getUdtKind() const override;
include/llvm/DebugInfo/PDB/PDBExtras.h
   38 raw_ostream &operator<<(raw_ostream &OS, const PDB_UdtType &Type);
   48 void dumpSymbolField(raw_ostream &OS, StringRef Name, T Value, int Indent) {
lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
  404 PDB_UdtType NativeRawSymbol::getUdtKind() const {
  405   return PDB_UdtType::Struct;
lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
   51   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;
lib/DebugInfo/PDB/PDBExtras.cpp
  284 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const PDB_UdtType &Type) {
tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
   46 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:
  230 static AccessType GetDefaultAccessibilityForUdtKind(PDB_UdtType udt_kind) {
  232   case PDB_UdtType::Struct:
  233   case PDB_UdtType::Union:
  235   case PDB_UdtType::Class:
  236   case PDB_UdtType::Interface:
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
 1597     can_parse = (udt->getUdtKind() != PDB_UdtType::Interface &&
tools/llvm-pdbutil/LinePrinter.h
  134 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) {