|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/DebugInfo/PDB/IPDBRawSymbol.h 167 virtual PDB_LocType getLocationType() const = 0;
include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h 141 PDB_LocType getLocationType() const override;
include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h 36 PDB_LocType getLocationType() const override;
include/llvm/DebugInfo/PDB/PDBExtras.h 32 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc);
48 void dumpSymbolField(raw_ostream &OS, StringRef Name, T Value, int Indent) {
lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp 380 PDB_LocType NativeRawSymbol::getLocationType() const {
381 return PDB_LocType::Null;
lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp 64 PDB_LocType NativeSymbolEnumerator::getLocationType() const {
65 return PDB_LocType::Constant;
lib/DebugInfo/PDB/PDBExtras.cpp 154 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const PDB_LocType &Loc) {
tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp 1245 auto location_type = member->getLocationType();
1248 if (location_type == PDB_LocType::ThisRel)
1259 if (location_type == PDB_LocType::BitField)
tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp 85 case PDB_LocType::Static:
86 case PDB_LocType::TLS: {
107 case PDB_LocType::RegRel: {
148 case PDB_LocType::Enregistered: {
164 case PDB_LocType::Constant: {
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp 956 case PDB_LocType::TLS:
959 case PDB_LocType::RegRel: {
tools/llvm-pdbutil/LinePrinter.h 134 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) {
tools/llvm-pdbutil/PrettyCompilandDumper.cpp 136 switch (auto LocType = Symbol.getLocationType()) {
137 case PDB_LocType::Static:
146 case PDB_LocType::Constant:
tools/llvm-pdbutil/PrettyVariableDumper.cpp 47 switch (auto LocType = Var.getLocationType()) {
48 case PDB_LocType::Static:
57 case PDB_LocType::Constant:
66 case PDB_LocType::ThisRel:
74 case PDB_LocType::BitField: