Lines Matching refs:Printer

35     : PDBSymDumper(true), Printer(P) {}  in VariableDumper()
40 if (Printer.IsSymbolExcluded(Var.getName())) in start()
49 Printer.NewLine(); in start()
50 Printer << "data ["; in start()
51 WithColor(Printer, PDB_ColorItem::Address).get() in start()
53 Printer << ", sizeof=" << Length << "] "; in start()
54 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
60 Printer.NewLine(); in start()
61 Printer << "data [sizeof=" << Length << "] "; in start()
63 Printer << " = "; in start()
64 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getValue(); in start()
67 Printer.NewLine(); in start()
68 Printer << "data "; in start()
69 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
75 Printer.NewLine(); in start()
76 Printer << "data "; in start()
77 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
81 Printer << " : "; in start()
82 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Var.getLength(); in start()
85 Printer.NewLine(); in start()
86 Printer << "data [sizeof=" << Length << "] "; in start()
87 Printer << "unknown(" << LocType << ") "; in start()
88 WithColor(Printer, PDB_ColorItem::Identifier).get() << Var.getName(); in start()
94 Printer.NewLine(); in startVbptr()
95 Printer << "vbptr "; in startVbptr()
97 WithColor(Printer, PDB_ColorItem::Offset).get() in startVbptr()
102 Printer.NewLine(); in start()
103 Printer << "vfptr "; in start()
107 WithColor(Printer, PDB_ColorItem::Offset).get() in start()
125 Printer << '[' << Symbol.getCount() << ']'; in dumpRight()
130 BuiltinDumper Dumper(Printer); in dump()
135 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
141 Printer << " "; in dump()
149 WithColor(Printer, PDB_ColorItem::Identifier).get() in dump()
151 Printer << "::"; in dump()
156 Printer << "("; in dumpRight()
162 Printer << ", "; in dumpRight()
165 Printer << ")"; in dumpRight()
168 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in dumpRight()
170 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in dumpRight()
173 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dumpRight()
183 Printer << " ("; in dump()
185 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in dump()
187 Printer << " ("; in dump()
189 Printer << (Symbol.isReference() ? "&" : "*"); in dump()
191 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const "; in dump()
193 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile "; in dump()
196 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict "; in dump()
206 Printer << ")"; in dumpRight()
212 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
213 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
217 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName(); in dump()
223 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name; in dumpSymbolTypeAndName()