Lines Matching refs:Printer
32 : PDBSymDumper(true), Printer(P) {} in VariableDumper()
37 if (Printer.IsSymbolExcluded(Var.getName())) in start()
44 Printer.NewLine(); in start()
45 Printer << "data ["; in start()
46 WithColor(Printer, PDB_ColorItem::Address).get() in start()
48 Printer << "] "; in start()
49 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
55 Printer.NewLine(); in start()
56 Printer << "data "; in start()
57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start()
59 Printer << " = "; in start()
60 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
63 Printer.NewLine(); in start()
64 Printer << "data "; in start()
65 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
70 Printer.NewLine(); in start()
71 Printer << "data "; in start()
72 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
75 Printer << " : "; in start()
76 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
79 Printer.NewLine(); in start()
80 Printer << "data "; in start()
81 Printer << "unknown(" << LocType << ") "; in start()
82 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
88 BuiltinDumper Dumper(Printer); in dump()
93 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
104 FunctionDumper NestedDumper(Printer); in dump()
111 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
113 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
115 Printer << (Symbol.isReference() ? "&" : "*"); in dump()
120 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
121 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
125 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
142 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()
143 Printer << IndexStream.str(); in dumpSymbolTypeAndName()
147 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()
160 FunctionDumper Dumper(Printer); in tryDumpFunctionPointer()