Lines Matching refs:Printer
37 : PDBSymDumper(true), Printer(P) {} in VariableDumper()
42 if (Printer.IsSymbolExcluded(Var.getName())) in start()
51 Printer.NewLine(); in start()
52 Printer << "data ["; in start()
53 WithColor(Printer, PDB_ColorItem::Address).get() in start()
55 Printer << ", sizeof=" << Length << "] "; in start()
56 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
62 Printer.NewLine(); in start()
63 Printer << "data [sizeof=" << Length << "] "; in start()
65 Printer << " = "; in start()
66 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
69 Printer.NewLine(); in start()
70 Printer << "data "; in start()
71 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
77 Printer.NewLine(); in start()
78 Printer << "data "; in start()
79 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
83 Printer << " : "; in start()
84 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
87 Printer.NewLine(); in start()
88 Printer << "data [sizeof=" << Length << "] "; in start()
89 Printer << "unknown(" << LocType << ") "; in start()
90 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
96 Printer.NewLine(); in startVbptr()
97 Printer << "vbptr "; in startVbptr()
99 WithColor(Printer, PDB_ColorItem::Offset).get() in startVbptr()
104 Printer.NewLine(); in start()
105 Printer << "vfptr "; in start()
109 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
127 Printer << '[' << Symbol.getCount() << ']'; in dumpRight()
132 BuiltinDumper Dumper(Printer); in dump()
137 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
143 Printer << " "; in dump()
151 WithColor(Printer, PDB_ColorItem::Identifier).get() in dump()
153 Printer << "::"; in dump()
158 Printer << "("; in dumpRight()
164 Printer << ", "; in dumpRight()
167 Printer << ")"; in dumpRight()
170 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in dumpRight()
172 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in dumpRight()
175 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dumpRight()
185 Printer << " ("; in dump()
187 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in dump()
189 Printer << " ("; in dump()
191 Printer << (Symbol.isReference() ? "&" : "*"); in dump()
193 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const "; in dump()
195 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile "; in dump()
198 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict "; in dump()
208 Printer << ")"; in dumpRight()
214 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
215 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
219 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
225 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()