• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/

Lines Matching defs:Printer

939 static void dumpInjectedSources(LinePrinter &Printer, IPDBSession &Session) {
942 Printer.printLine("There are no injected sources.");
947 Printer.NewLine();
954 WithColor(Printer, PDB_ColorItem::Path).get() << File;
955 Printer << " (";
956 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Size;
957 Printer << " bytes): ";
958 WithColor(Printer, PDB_ColorItem::Keyword).get() << "obj";
959 Printer << "=";
960 WithColor(Printer, PDB_ColorItem::Path).get() << Obj;
961 Printer << ", ";
962 WithColor(Printer, PDB_ColorItem::Keyword).get() << "vname";
963 Printer << "=";
964 WithColor(Printer, PDB_ColorItem::Path).get() << VFName;
965 Printer << ", ";
966 WithColor(Printer, PDB_ColorItem::Keyword).get() << "crc";
967 Printer << "=";
968 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << CRC;
969 Printer << ", ";
970 WithColor(Printer, PDB_ColorItem::Keyword).get() << "compression";
971 Printer << "=";
973 WithColor(Printer, PDB_ColorItem::LiteralValue).get(),
980 int Indent = Printer.getIndentLevel();
981 Printer.Unindent(Indent);
984 Printer.printLine(IS->getCode());
986 Printer.formatBinary("Compressed data",
991 Printer.Indent(Indent);
1072 LinePrinter Printer(2, UseColor, Stream);
1079 WithColor(Printer, PDB_ColorItem::None).get() << "Summary for ";
1080 WithColor(Printer, PDB_ColorItem::Path).get() << FileName;
1081 Printer.Indent();
1084 Printer.NewLine();
1085 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Size";
1087 Printer << ": " << FileSize << " bytes";
1089 Printer << ": (Unable to obtain file size)";
1092 Printer.NewLine();
1093 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Guid";
1094 Printer << ": " << GlobalScope->getGuid();
1096 Printer.NewLine();
1097 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Age";
1098 Printer << ": " << GlobalScope->getAge();
1100 Printer.NewLine();
1101 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Attributes";
1102 Printer << ": ";
1107 Printer.Unindent();
1110 Printer.NewLine();
1111 WithColor(Printer, PDB_ColorItem::SectionHeader).get()
1118 Printer.formatLine("[not found] - {0}", Name);
1121 Printer.formatLine("[{0} occurrences] - {1}", Symbols->getChildCount(),
1124 AutoIndent Indent(Printer);
1125 Printer.NewLine();
1130 TypedefDumper TD(Printer);
1137 EnumDumper ED(Printer);
1144 ClassDefinitionDumper CD(Printer);
1152 TypeDumper TD(Printer);
1157 FunctionDumper FD(Printer);
1164 VariableDumper VD(Printer);
1171 ExternalSymbolDumper ED(Printer);
1186 Printer.NewLine();
1187 WithColor(Printer, PDB_ColorItem::SectionHeader).get()
1192 Printer.Indent();
1193 CompilandDumper Dumper(Printer);
1199 Printer.Unindent();
1206 Printer.NewLine();
1207 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---TYPES---";
1208 Printer.Indent();
1209 TypeDumper Dumper(Printer);
1211 Printer.Unindent();
1215 Printer.NewLine();
1216 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---SYMBOLS---";
1218 Printer.Indent();
1219 CompilandDumper Dumper(Printer);
1222 Printer.Unindent();
1227 Printer.NewLine();
1228 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---";
1229 Printer.Indent();
1232 FunctionDumper Dumper(Printer);
1235 Printer.NewLine();
1244 Printer.NewLine();
1252 VariableDumper Dumper(Printer);
1268 CompilandDumper Dumper(Printer);
1273 Printer.Unindent();
1276 Printer.NewLine();
1277 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---EXTERNALS---";
1278 Printer.Indent();
1279 ExternalSymbolDumper Dumper(Printer);
1283 Printer.NewLine();
1286 Printer.NewLine();
1287 WithColor(Printer, PDB_ColorItem::SectionHeader).get()
1289 AutoIndent Indent1(Printer);
1290 dumpInjectedSources(Printer, *Session);
1293 Printer.NewLine();