Lines Matching full:printer
39 : PDBSymDumper(true), Printer(P) {}
47 if (Printer.IsCompilandExcluded(FullName))
50 Printer.NewLine();
51 WithColor(Printer, PDB_ColorItem::Path).get() << FullName;
56 Printer.Indent();
59 Printer.Unindent();
63 if (Printer.IsSymbolExcluded(Symbol.getName()))
66 Printer.NewLine();
70 Printer << "data: ";
71 WithColor(Printer, PDB_ColorItem::Address).get()
75 Printer << "constant: ";
76 WithColor(Printer, PDB_ColorItem::LiteralValue).get()
80 Printer << "data(unexpected type=" << LocType << ")";
83 Printer << " ";
84 WithColor(Printer, PDB_ColorItem::Identifier).get() << Symbol.getName();
90 if (Printer.IsSymbolExcluded(Symbol.getName()))
93 Printer.NewLine();
94 FunctionDumper Dumper(Printer);
99 if (Printer.IsSymbolExcluded(Symbol.getName()))
102 Printer.NewLine();
103 Printer << "label ";
104 WithColor(Printer, PDB_ColorItem::Address).get()
106 WithColor(Printer, PDB_ColorItem::Identifier).get() << Symbol.getName();
110 if (Printer.IsSymbolExcluded(Symbol.getName()))
113 Printer.NewLine();
114 Printer << "thunk ";
119 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(RVA, 10);
120 Printer << " -> ";
121 WithColor(Printer, PDB_ColorItem::Address).get() << format_hex(Target, 10);
123 WithColor(Printer, PDB_ColorItem::Address).get()
127 Printer << " (";
128 WithColor(Printer, PDB_ColorItem::Register).get() << Ordinal;
129 Printer << ") ";
132 WithColor(Printer, PDB_ColorItem::Identifier).get() << Name;
138 Printer.NewLine();
139 Printer << "unknown (" << Symbol.getSymTag() << ")";