Lines Matching refs:Var
39 void VariableDumper::start(const PDBSymbolData &Var, uint32_t Offset) { in start() argument
40 if (Var.isCompilerGenerated() && opts::pretty::ExcludeCompilerGenerated) in start()
42 if (Printer.IsSymbolExcluded(Var.getName())) in start()
45 auto VarType = Var.getType(); in start()
49 switch (auto LocType = Var.getLocationType()) { in start()
54 << format_hex(Var.getVirtualAddress(), 10); in start()
57 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
64 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
66 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
72 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()
74 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
80 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()
82 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
84 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
90 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
103 void VariableDumper::start(const PDBSymbolTypeVTable &Var, uint32_t Offset) { in start() argument
106 auto VTableType = cast<PDBSymbolTypePointer>(Var.getType()); in start()
110 << "+" << format_hex(Offset + Var.getOffset(), 4) in start()