Lines Matching refs:Var
34 void VariableDumper::start(const PDBSymbolData &Var) { in start() argument
35 if (Var.isCompilerGenerated() && opts::ExcludeCompilerGenerated) in start()
37 if (Printer.IsSymbolExcluded(Var.getName())) in start()
40 auto VarType = Var.getType(); in start()
42 switch (auto LocType = Var.getLocationType()) { in start()
47 << format_hex(Var.getVirtualAddress(), 10); in start()
50 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
58 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
60 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
66 << "+" << format_hex(Var.getOffset(), 4) << " "; in start()
67 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
73 << "+" << format_hex(Var.getOffset(), 4) << " "; in start()
74 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
76 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
82 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()