Lines Matching refs:Printer
23 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in EnumDumper()
28 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start()
30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in start()
32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned "; in start()
33 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in start()
34 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in start()
38 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in start()
39 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in start()
46 Printer << " : "; in start()
47 BuiltinDumper Dumper(Printer); in start()
51 Printer << " {"; in start()
52 Printer.Indent(); in start()
57 Printer.NewLine(); in start()
58 WithColor(Printer, PDB_ColorItem::Identifier).get() in start()
60 Printer << " = "; in start()
61 WithColor(Printer, PDB_ColorItem::LiteralValue).get() in start()
65 Printer.Unindent(); in start()
66 Printer.NewLine(); in start()
67 Printer << "}"; in start()