Home
last modified time | relevance | path

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

/external/llvm/tools/llvm-pdbdump/
DLinePrinter.cpp45 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()
DEnumDumper.h18 class LinePrinter; variable
22 EnumDumper(LinePrinter &P);
27 LinePrinter &Printer;
DLinePrinter.h23 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);
DExternalSymbolDumper.h18 class LinePrinter; variable
22 ExternalSymbolDumper(LinePrinter &P);
29 LinePrinter &Printer;
DBuiltinDumper.h19 class LinePrinter; variable
23 BuiltinDumper(LinePrinter &P);
30 LinePrinter &Printer;
DTypeDumper.h17 class LinePrinter; variable
21 TypeDumper(LinePrinter &P);
30 LinePrinter &Printer;
DTypedefDumper.h18 class LinePrinter; variable
22 TypedefDumper(LinePrinter &P);
34 LinePrinter &Printer;
DVariableDumper.h21 class LinePrinter; variable
25 VariableDumper(LinePrinter &P);
40 LinePrinter &Printer;
DCompilandDumper.h18 class LinePrinter; variable
25 CompilandDumper(LinePrinter &P);
39 LinePrinter &Printer;
DFunctionDumper.h17 class LinePrinter; variable
21 FunctionDumper(LinePrinter &P);
38 LinePrinter &Printer;
DClassDefinitionDumper.h24 class LinePrinter; variable
28 ClassDefinitionDumper(LinePrinter &P);
41 LinePrinter &Printer;
DCMakeLists.txt16 LinePrinter.cpp
DExternalSymbolDumper.cpp20 ExternalSymbolDumper::ExternalSymbolDumper(LinePrinter &P) in ExternalSymbolDumper()
DBuiltinDumper.cpp19 BuiltinDumper::BuiltinDumper(LinePrinter &P) in BuiltinDumper()
DEnumDumper.cpp23 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in EnumDumper()
DFunctionDumper.cpp36 void dumpClassParentWithScopeOperator(const T &Symbol, LinePrinter &Printer, in dumpClassParentWithScopeOperator()
50 FunctionDumper::FunctionDumper(LinePrinter &P) in FunctionDumper()
DTypeDumper.cpp29 TypeDumper::TypeDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in TypeDumper()
DTypedefDumper.cpp28 TypedefDumper::TypedefDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} in TypedefDumper()
DCompilandDumper.cpp40 CompilandDumper::CompilandDumper(LinePrinter &P) in CompilandDumper()
DVariableDumper.cpp32 VariableDumper::VariableDumper(LinePrinter &P) in VariableDumper()
DClassDefinitionDumper.cpp33 ClassDefinitionDumper::ClassDefinitionDumper(LinePrinter &P) in ClassDefinitionDumper()
Dllvm-pdbdump.cpp400 LinePrinter Printer(2, outs()); in dumpPretty()