Lines Matching refs:Printer

33     : PDBSymDumper(true), Printer(P) {}  in VariableDumper()
38 if (Printer.IsSymbolExcluded(Var.getName())) in start()
45 Printer.NewLine(); in start()
46 Printer << "data ["; in start()
47 WithColor(Printer, PDB_ColorItem::Address).get() in start()
49 Printer << "] "; in start()
50 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
56 Printer.NewLine(); in start()
57 Printer << "data "; in start()
58 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start()
60 Printer << " = "; in start()
61 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
64 Printer.NewLine(); in start()
65 Printer << "data "; in start()
66 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
71 Printer.NewLine(); in start()
72 Printer << "data "; in start()
73 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
76 Printer << " : "; in start()
77 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
80 Printer.NewLine(); in start()
81 Printer << "data "; in start()
82 Printer << "unknown(" << LocType << ") "; in start()
83 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
89 BuiltinDumper Dumper(Printer); in dump()
94 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
105 FunctionDumper NestedDumper(Printer); in dump()
112 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
114 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
116 Printer << (Symbol.isReference() ? "&" : "*"); in dump()
121 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
122 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
126 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
143 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()
144 Printer << IndexStream.str(); in dumpSymbolTypeAndName()
148 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()
161 FunctionDumper Dumper(Printer); in tryDumpFunctionPointer()