Lines Matching refs:Var
35 void VariableDumper::start(const PDBSymbolData &Var) { in start() argument
36 if (Var.isCompilerGenerated() && opts::pretty::ExcludeCompilerGenerated) in start()
38 if (Printer.IsSymbolExcluded(Var.getName())) in start()
41 auto VarType = Var.getType(); in start()
43 switch (auto LocType = Var.getLocationType()) { in start()
48 << format_hex(Var.getVirtualAddress(), 10); in start()
51 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
59 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
61 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
67 << "+" << format_hex(Var.getOffset(), 4) << " "; in start()
68 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
74 << "+" << format_hex(Var.getOffset(), 4) << " "; in start()
75 dumpSymbolTypeAndName(*VarType, Var.getName()); in start()
77 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
83 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()