Lines Matching refs:Printer

36     : PDBSymDumper(true), Printer(P) {}  in VariableDumper()
41 if (Printer.IsSymbolExcluded(Var.getName())) in start()
50 Printer.NewLine(); in start()
51 Printer << "data ["; in start()
52 WithColor(Printer, PDB_ColorItem::Address).get() in start()
54 Printer << ", sizeof=" << Length << "] "; in start()
55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
61 Printer.NewLine(); in start()
62 Printer << "data [sizeof=" << Length << "] "; in start()
64 Printer << " = "; in start()
65 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
68 Printer.NewLine(); in start()
69 Printer << "data "; in start()
70 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
76 Printer.NewLine(); in start()
77 Printer << "data "; in start()
78 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
82 Printer << " : "; in start()
83 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
86 Printer.NewLine(); in start()
87 Printer << "data [sizeof=" << Length << "] "; in start()
88 Printer << "unknown(" << LocType << ") "; in start()
89 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
95 Printer.NewLine(); in startVbptr()
96 Printer << "vbptr "; in startVbptr()
98 WithColor(Printer, PDB_ColorItem::Offset).get() in startVbptr()
103 Printer.NewLine(); in start()
104 Printer << "vfptr "; in start()
108 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
126 Printer << '[' << Symbol.getCount() << ']'; in dumpRight()
131 BuiltinDumper Dumper(Printer); in dump()
136 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
142 Printer << " "; in dump()
150 WithColor(Printer, PDB_ColorItem::Identifier).get() in dump()
152 Printer << "::"; in dump()
157 Printer << "("; in dumpRight()
163 Printer << ", "; in dumpRight()
166 Printer << ")"; in dumpRight()
169 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in dumpRight()
171 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in dumpRight()
174 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dumpRight()
184 Printer << " ("; in dump()
186 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in dump()
188 Printer << " ("; in dump()
190 Printer << (Symbol.isReference() ? "&" : "*"); in dump()
192 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const "; in dump()
194 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile "; in dump()
197 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict "; in dump()
207 Printer << ")"; in dumpRight()
213 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
214 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
218 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
224 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()