| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | LinePrinter.cpp | 53 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream) in LinePrinter() function in LinePrinter 70 void LinePrinter::Indent(uint32_t Amount) { in Indent() 76 void LinePrinter::Unindent(uint32_t Amount) { in Unindent() 82 void LinePrinter::NewLine() { in NewLine() 87 void LinePrinter::print(const Twine &T) { OS << T; } in print() 89 void LinePrinter::printLine(const Twine &T) { in printLine() 94 bool LinePrinter::IsClassExcluded(const ClassLayout &Class) { in IsClassExcluded() 174 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() 246 void LinePrinter::formatMsfStreamBlocks( in formatMsfStreamBlocks() 278 bool LinePrinter::IsSymbolExcluded(llvm::StringRef SymbolName) { in IsSymbolExcluded() [all …]
|
| H A D | LinePrinter.h | 32 class LinePrinter { 36 LinePrinter(int Indent, bool UseColor, raw_ostream &Stream); 96 explicit PrintScope(LinePrinter &P, uint32_t IndentLevel) in PrintScope() 101 LinePrinter &P; 114 explicit AutoIndent(LinePrinter &L, uint32_t Amount = 0) 129 LinePrinter *L = nullptr; 134 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) { 155 WithColor(LinePrinter &P, PDB_ColorItem C);
|
| H A D | PrettyEnumDumper.h | 17 class LinePrinter; variable 21 EnumDumper(LinePrinter &P); 26 LinePrinter &Printer;
|
| H A D | PrettyBuiltinDumper.h | 18 class LinePrinter; variable 22 BuiltinDumper(LinePrinter &P); 29 LinePrinter &Printer;
|
| H A D | PrettyExternalSymbolDumper.h | 17 class LinePrinter; variable 21 ExternalSymbolDumper(LinePrinter &P); 28 LinePrinter &Printer;
|
| H A D | PrettyClassDefinitionDumper.h | 28 class LinePrinter; variable 32 ClassDefinitionDumper(LinePrinter &P); 41 LinePrinter &Printer;
|
| H A D | MinimalSymbolDumper.h | 20 class LinePrinter; variable 25 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper() 29 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper() 54 LinePrinter &P;
|
| H A D | PrettyTypedefDumper.h | 17 class LinePrinter; variable 21 TypedefDumper(LinePrinter &P); 33 LinePrinter &Printer;
|
| H A D | PrettyTypeDumper.h | 16 class LinePrinter; variable 21 TypeDumper(LinePrinter &P); 37 LinePrinter &Printer;
|
| H A D | PrettyFunctionDumper.h | 16 class LinePrinter; variable 20 FunctionDumper(LinePrinter &P); 37 LinePrinter &Printer;
|
| H A D | PrettyCompilandDumper.h | 17 class LinePrinter; variable 24 CompilandDumper(LinePrinter &P); 39 LinePrinter &Printer;
|
| H A D | PrettyClassLayoutGraphicalDumper.h | 22 class LinePrinter; variable 26 PrettyClassLayoutGraphicalDumper(LinePrinter &P, uint32_t RecurseLevel, 47 LinePrinter &Printer;
|
| H A D | PrettyVariableDumper.h | 20 class LinePrinter; variable 24 VariableDumper(LinePrinter &P); 45 LinePrinter &Printer;
|
| H A D | PrettyTypeDumper.cpp | 89 filterAndSortClassDefs(LinePrinter &Printer, Enumerator &E, in filterAndSortClassDefs() 138 TypeDumper::TypeDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in TypeDumper() 141 static bool isTypeExcluded(LinePrinter &Printer, const T &Symbol) { in isTypeExcluded() 145 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded() 155 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded() 161 static void dumpSymbolCategory(LinePrinter &Printer, const PDBSymbolExe &Exe, in dumpSymbolCategory() 179 static void printClassDecl(LinePrinter &Printer, in printClassDecl()
|
| H A D | MinimalTypeDumper.h | 21 class LinePrinter; variable 27 MinimalTypeDumpVisitor(LinePrinter &P, uint32_t Width, bool RecordBytes, in MinimalTypeDumpVisitor() 56 LinePrinter &P;
|
| H A D | InputFile.h | 34 class LinePrinter; variable 96 void formatFromFileName(LinePrinter &Printer, StringRef File, 99 void formatFromChecksumsOffset(LinePrinter &Printer, uint32_t Offset,
|
| H A D | ExplainOutputStyle.cpp | 291 static void printStructField(LinePrinter &P, StringRef Label, T Value) { in printStructField() 296 static void explainDbiHeaderOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiHeaderOffset() 357 static void explainDbiModiSubstreamOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiModiSubstreamOffset() 382 static void dontExplain(LinePrinter &Printer, T &Stream, uint32_t Offset) {} in dontExplain() 385 static void explainSubstreamOffset(LinePrinter &P, uint32_t OffsetInStream, in explainSubstreamOffset() 413 void (*Explain)(LinePrinter &, DbiStream &, uint32_t); in explainStreamOffset() 434 static void explainPdbStreamHeaderOffset(LinePrinter &P, InfoStream &Info, in explainPdbStreamHeaderOffset() 459 void (*Explain)(LinePrinter &, InfoStream &, uint32_t); in explainStreamOffset()
|
| H A D | BytesOutputStyle.cpp | 64 static SmallVector<StreamSpec, 2> parseStreamSpecs(LinePrinter &P) { in parseStreamSpecs() 79 static void printHeader(LinePrinter &P, const Twine &S) { in printHeader() 323 static void iterateOneModule(PDBFile &File, LinePrinter &P, in iterateOneModule() 354 static void iterateModules(PDBFile &File, LinePrinter &P, uint32_t IndentLevel, in iterateModules()
|
| H A D | PrettyExternalSymbolDumper.cpp | 19 ExternalSymbolDumper::ExternalSymbolDumper(LinePrinter &P) in ExternalSymbolDumper()
|
| H A D | ExplainOutputStyle.h | 62 LinePrinter P;
|
| H A D | BytesOutputStyle.h | 61 LinePrinter P;
|
| H A D | PrettyBuiltinDumper.cpp | 17 BuiltinDumper::BuiltinDumper(LinePrinter &P) in BuiltinDumper()
|
| H A D | PrettyEnumDumper.cpp | 22 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in EnumDumper()
|
| H A D | InputFile.cpp | 123 static void formatInternal(LinePrinter &Printer, bool Append, Args &&... args) { in formatInternal() 212 void SymbolGroup::formatFromFileName(LinePrinter &Printer, StringRef File, in formatFromFileName() 225 void SymbolGroup::formatFromChecksumsOffset(LinePrinter &Printer, in formatFromChecksumsOffset()
|
| /freebsd-13.1/usr.bin/clang/llvm-pdbutil/ |
| H A D | Makefile | 11 SRCS+= LinePrinter.cpp
|