| /openbsd-src/gnu/llvm/lldb/tools/lldb-test/ |
| H A D | FormatUtil.cpp | 16 LinePrinter::Line::~Line() { in ~Line() 21 LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream) in LinePrinter() function in LinePrinter 24 void LinePrinter::Indent(uint32_t Amount) { in Indent() 30 void LinePrinter::Unindent(uint32_t Amount) { in Unindent() 36 void LinePrinter::NewLine() { in NewLine() 40 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() 53 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary()
|
| H A D | FormatUtil.h | 22 class LinePrinter { 29 LinePrinter *P; 32 Line(LinePrinter &P) : P(&P) { P.OS.indent(P.CurrentIndent); } in Line() 41 LinePrinter(int Indent, llvm::raw_ostream &Stream); 62 explicit AutoIndent(LinePrinter &L, uint32_t Amount = 0) 71 LinePrinter *L = nullptr;
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.cpp | 56 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream, in LinePrinter() function in LinePrinter 75 void LinePrinter::Indent(uint32_t Amount) { in Indent() 81 void LinePrinter::Unindent(uint32_t Amount) { in Unindent() 87 void LinePrinter::NewLine() { in NewLine() 92 void LinePrinter::print(const Twine &T) { OS << T; } in print() 94 void LinePrinter::printLine(const Twine &T) { in printLine() 99 bool LinePrinter::IsClassExcluded(const ClassLayout &Class) { in IsClassExcluded() 107 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() 120 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() 180 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.h | 50 class LinePrinter { 54 LinePrinter(int Indent, bool UseColor, raw_ostream &Stream, 118 explicit PrintScope(LinePrinter &P, uint32_t IndentLevel) in PrintScope() 123 LinePrinter &P; 133 explicit AutoIndent(LinePrinter &L, uint32_t Amount = 0) 146 LinePrinter *L = nullptr; 151 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) { 172 WithColor(LinePrinter &P, PDB_ColorItem C);
|
| H A D | InputFile.h | 33 class LinePrinter; variable 99 void formatFromFileName(LinePrinter &Printer, StringRef File, 102 void formatFromChecksumsOffset(LinePrinter &Printer, uint32_t Offset,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| 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 | 91 filterAndSortClassDefs(LinePrinter &Printer, Enumerator &E, in filterAndSortClassDefs() 140 TypeDumper::TypeDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in TypeDumper() 143 static bool isTypeExcluded(LinePrinter &Printer, const T &Symbol) { in isTypeExcluded() 147 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded() 157 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded() 163 static void dumpSymbolCategory(LinePrinter &Printer, const PDBSymbolExe &Exe, in dumpSymbolCategory() 181 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 | ExplainOutputStyle.cpp | 294 static void printStructField(LinePrinter &P, StringRef Label, T Value) { in printStructField() 299 static void explainDbiHeaderOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiHeaderOffset() 360 static void explainDbiModiSubstreamOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiModiSubstreamOffset() 385 static void dontExplain(LinePrinter &Printer, T &Stream, uint32_t Offset) {} in dontExplain() 388 static void explainSubstreamOffset(LinePrinter &P, uint32_t OffsetInStream, in explainSubstreamOffset() 416 void (*Explain)(LinePrinter &, DbiStream &, uint32_t); in explainStreamOffset() 437 static void explainPdbStreamHeaderOffset(LinePrinter &P, InfoStream &Info, in explainPdbStreamHeaderOffset() 462 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 | 20 ExternalSymbolDumper::ExternalSymbolDumper(LinePrinter &P) in ExternalSymbolDumper()
|
| H A D | ExplainOutputStyle.h | 63 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 | 23 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in EnumDumper()
|