Home
last modified time | relevance | path

Searched refs:LinePrinter (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DLinePrinter.cpp54 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream) in LinePrinter() function in LinePrinter
71 void LinePrinter::Indent(uint32_t Amount) { in Indent()
77 void LinePrinter::Unindent(uint32_t Amount) { in Unindent()
83 void LinePrinter::NewLine() { in NewLine()
88 void LinePrinter::print(const Twine &T) { OS << T; } in print()
90 void LinePrinter::printLine(const Twine &T) { in printLine()
95 bool LinePrinter::IsClassExcluded(const ClassLayout &Class) { in IsClassExcluded()
175 void LinePrinter::formatMsfStreamData(StringRef Label, PDBFile &File, in formatMsfStreamData()
248 void LinePrinter::formatMsfStreamBlocks( in formatMsfStreamBlocks()
280 bool LinePrinter::IsSymbolExcluded(llvm::StringRef SymbolName) { in IsSymbolExcluded()
[all …]
H A DLinePrinter.h33 class LinePrinter {
37 LinePrinter(int Indent, bool UseColor, raw_ostream &Stream);
97 explicit PrintScope(LinePrinter &P, uint32_t IndentLevel) in PrintScope()
102 LinePrinter &P;
115 explicit AutoIndent(LinePrinter &L, uint32_t Amount = 0)
130 LinePrinter *L = nullptr;
135 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) {
157 WithColor(LinePrinter &P, PDB_ColorItem C);
H A DPrettyEnumDumper.h18 class LinePrinter; variable
22 EnumDumper(LinePrinter &P);
27 LinePrinter &Printer;
H A DPrettyExternalSymbolDumper.h18 class LinePrinter; variable
22 ExternalSymbolDumper(LinePrinter &P);
29 LinePrinter &Printer;
H A DPrettyBuiltinDumper.h19 class LinePrinter; variable
23 BuiltinDumper(LinePrinter &P);
30 LinePrinter &Printer;
H A DMinimalSymbolDumper.h21 class LinePrinter; variable
26 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper()
30 MinimalSymbolDumper(LinePrinter &P, bool RecordBytes, in MinimalSymbolDumper()
55 LinePrinter &P;
H A DPrettyClassDefinitionDumper.h29 class LinePrinter; variable
33 ClassDefinitionDumper(LinePrinter &P);
42 LinePrinter &Printer;
H A DPrettyTypedefDumper.h18 class LinePrinter; variable
22 TypedefDumper(LinePrinter &P);
34 LinePrinter &Printer;
H A DPrettyTypeDumper.h17 class LinePrinter; variable
22 TypeDumper(LinePrinter &P);
38 LinePrinter &Printer;
H A DPrettyFunctionDumper.h17 class LinePrinter; variable
21 FunctionDumper(LinePrinter &P);
38 LinePrinter &Printer;
H A DPrettyCompilandDumper.h18 class LinePrinter; variable
25 CompilandDumper(LinePrinter &P);
40 LinePrinter &Printer;
H A DPrettyClassLayoutGraphicalDumper.h23 class LinePrinter; variable
27 PrettyClassLayoutGraphicalDumper(LinePrinter &P, uint32_t RecurseLevel,
48 LinePrinter &Printer;
H A DPrettyVariableDumper.h21 class LinePrinter; variable
25 VariableDumper(LinePrinter &P);
46 LinePrinter &Printer;
H A DPrettyTypeDumper.cpp90 filterAndSortClassDefs(LinePrinter &Printer, Enumerator &E, in filterAndSortClassDefs()
139 TypeDumper::TypeDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in TypeDumper()
142 static bool isTypeExcluded(LinePrinter &Printer, const T &Symbol) { in isTypeExcluded()
146 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded()
156 static bool isTypeExcluded(LinePrinter &Printer, in isTypeExcluded()
162 static void dumpSymbolCategory(LinePrinter &Printer, const PDBSymbolExe &Exe, in dumpSymbolCategory()
180 static void printClassDecl(LinePrinter &Printer, in printClassDecl()
H A DMinimalTypeDumper.h22 class LinePrinter; variable
27 MinimalTypeDumpVisitor(LinePrinter &P, uint32_t Width, bool RecordBytes, in MinimalTypeDumpVisitor()
55 LinePrinter &P;
H A DExplainOutputStyle.cpp292 static void printStructField(LinePrinter &P, StringRef Label, T Value) { in printStructField()
297 static void explainDbiHeaderOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiHeaderOffset()
358 static void explainDbiModiSubstreamOffset(LinePrinter &P, DbiStream &Dbi, in explainDbiModiSubstreamOffset()
383 static void dontExplain(LinePrinter &Printer, T &Stream, uint32_t Offset) {} in dontExplain()
386 static void explainSubstreamOffset(LinePrinter &P, uint32_t OffsetInStream, in explainSubstreamOffset()
414 void (*Explain)(LinePrinter &, DbiStream &, uint32_t); in explainStreamOffset()
435 static void explainPdbStreamHeaderOffset(LinePrinter &P, InfoStream &Info, in explainPdbStreamHeaderOffset()
460 void (*Explain)(LinePrinter &, InfoStream &, uint32_t); in explainStreamOffset()
H A DInputFile.h35 class LinePrinter; variable
97 void formatFromFileName(LinePrinter &Printer, StringRef File,
100 void formatFromChecksumsOffset(LinePrinter &Printer, uint32_t Offset,
H A DBytesOutputStyle.cpp65 static SmallVector<StreamSpec, 2> parseStreamSpecs(LinePrinter &P) { in parseStreamSpecs()
80 static void printHeader(LinePrinter &P, const Twine &S) { in printHeader()
324 static void iterateOneModule(PDBFile &File, LinePrinter &P, in iterateOneModule()
357 static void iterateModules(PDBFile &File, LinePrinter &P, uint32_t IndentLevel, in iterateModules()
H A DPrettyExternalSymbolDumper.cpp20 ExternalSymbolDumper::ExternalSymbolDumper(LinePrinter &P) in ExternalSymbolDumper()
H A DExplainOutputStyle.h63 LinePrinter P;
H A DBytesOutputStyle.h62 LinePrinter P;
H A DPrettyBuiltinDumper.cpp18 BuiltinDumper::BuiltinDumper(LinePrinter &P) in BuiltinDumper()
H A DInputFile.cpp120 static void formatInternal(LinePrinter &Printer, bool Append, Args &&... args) { in formatInternal()
209 void SymbolGroup::formatFromFileName(LinePrinter &Printer, StringRef File, in formatFromFileName()
222 void SymbolGroup::formatFromChecksumsOffset(LinePrinter &Printer, in formatFromChecksumsOffset()
H A DPrettyFunctionDumper.cpp36 void dumpClassParentWithScopeOperator(const T &Symbol, LinePrinter &Printer, in dumpClassParentWithScopeOperator()
50 FunctionDumper::FunctionDumper(LinePrinter &P) in FunctionDumper()
/freebsd-12.1/usr.bin/clang/llvm-pdbutil/
H A DMakefile11 SRCS+= LinePrinter.cpp

12