/external/llvm-project/lldb/tools/lldb-test/ |
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()
|
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;
|
/external/llvm/tools/llvm-pdbdump/ |
D | LinePrinter.cpp | 45 LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream) in LinePrinter() function in LinePrinter 62 void LinePrinter::Indent() { CurrentIndent += IndentSpaces; } in Indent() 64 void LinePrinter::Unindent() { in Unindent() 68 void LinePrinter::NewLine() { in NewLine() 73 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName) { in IsTypeExcluded() 77 bool LinePrinter::IsSymbolExcluded(llvm::StringRef SymbolName) { in IsSymbolExcluded() 81 bool LinePrinter::IsCompilandExcluded(llvm::StringRef CompilandName) { in IsCompilandExcluded() 86 WithColor::WithColor(LinePrinter &P, PDB_ColorItem C) : OS(P.OS) { in WithColor()
|
D | EnumDumper.h | 18 class LinePrinter; variable 22 EnumDumper(LinePrinter &P); 27 LinePrinter &Printer;
|
D | BuiltinDumper.h | 19 class LinePrinter; variable 23 BuiltinDumper(LinePrinter &P); 30 LinePrinter &Printer;
|
D | ExternalSymbolDumper.h | 18 class LinePrinter; variable 22 ExternalSymbolDumper(LinePrinter &P); 29 LinePrinter &Printer;
|
D | TypeDumper.h | 17 class LinePrinter; variable 21 TypeDumper(LinePrinter &P); 30 LinePrinter &Printer;
|
D | LinePrinter.h | 23 class LinePrinter { 27 LinePrinter(int Indent, raw_ostream &Stream); 62 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) { 82 WithColor(LinePrinter &P, PDB_ColorItem C);
|
D | TypedefDumper.h | 18 class LinePrinter; variable 22 TypedefDumper(LinePrinter &P); 34 LinePrinter &Printer;
|
D | VariableDumper.h | 21 class LinePrinter; variable 25 VariableDumper(LinePrinter &P); 40 LinePrinter &Printer;
|
D | FunctionDumper.h | 17 class LinePrinter; variable 21 FunctionDumper(LinePrinter &P); 38 LinePrinter &Printer;
|
D | CompilandDumper.h | 18 class LinePrinter; variable 25 CompilandDumper(LinePrinter &P); 39 LinePrinter &Printer;
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
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() 102 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() 115 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data, in formatBinary() 174 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData() [all …]
|
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);
|
D | PrettyEnumDumper.h | 17 class LinePrinter; variable 21 EnumDumper(LinePrinter &P); 26 LinePrinter &Printer;
|
D | PrettyExternalSymbolDumper.h | 17 class LinePrinter; variable 21 ExternalSymbolDumper(LinePrinter &P); 28 LinePrinter &Printer;
|
D | PrettyBuiltinDumper.h | 18 class LinePrinter; variable 22 BuiltinDumper(LinePrinter &P); 29 LinePrinter &Printer;
|
D | PrettyClassDefinitionDumper.h | 28 class LinePrinter; variable 32 ClassDefinitionDumper(LinePrinter &P); 41 LinePrinter &Printer;
|
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;
|
D | PrettyTypedefDumper.h | 17 class LinePrinter; variable 21 TypedefDumper(LinePrinter &P); 33 LinePrinter &Printer;
|
D | PrettyTypeDumper.h | 16 class LinePrinter; variable 21 TypeDumper(LinePrinter &P); 37 LinePrinter &Printer;
|
D | PrettyFunctionDumper.h | 16 class LinePrinter; variable 20 FunctionDumper(LinePrinter &P); 37 LinePrinter &Printer;
|
D | PrettyCompilandDumper.h | 17 class LinePrinter; variable 24 CompilandDumper(LinePrinter &P); 39 LinePrinter &Printer;
|
D | PrettyClassLayoutGraphicalDumper.h | 22 class LinePrinter; variable 26 PrettyClassLayoutGraphicalDumper(LinePrinter &P, uint32_t RecurseLevel, 47 LinePrinter &Printer;
|
D | PrettyVariableDumper.h | 20 class LinePrinter; variable 24 VariableDumper(LinePrinter &P); 45 LinePrinter &Printer;
|