Lines Matching refs:Var
38 void VariableDumper::start(const PDBSymbolData &Var, uint32_t Offset) { in start() argument
39 if (Var.isCompilerGenerated() && opts::pretty::ExcludeCompilerGenerated) in start()
41 if (Printer.IsSymbolExcluded(Var.getName())) in start()
44 auto VarType = Var.getType(); in start()
48 switch (auto LocType = Var.getLocationType()) { in start()
53 << format_hex(Var.getVirtualAddress(), 10); in start()
56 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
63 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
65 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
71 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()
73 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
79 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()
81 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
83 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
89 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
102 void VariableDumper::start(const PDBSymbolTypeVTable &Var, uint32_t Offset) { in start() argument
105 auto VTableType = cast<PDBSymbolTypePointer>(Var.getType()); in start()
109 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()