Searched refs:LinePrinter (Results 1 - 22 of 22) sorted by relevance
/external/llvm/tools/llvm-pdbdump/ |
H A D | EnumDumper.h | 17 class LinePrinter; 21 EnumDumper(LinePrinter &P); 26 LinePrinter &Printer;
|
H A D | BuiltinDumper.h | 17 class LinePrinter; 21 BuiltinDumper(LinePrinter &P); 28 LinePrinter &Printer;
|
H A D | ExternalSymbolDumper.h | 17 class LinePrinter; 21 ExternalSymbolDumper(LinePrinter &P); 28 LinePrinter &Printer;
|
H A D | TypeDumper.h | 17 class LinePrinter; 21 TypeDumper(LinePrinter &P); 30 LinePrinter &Printer;
|
H A D | CompilandDumper.h | 17 class LinePrinter; 21 CompilandDumper(LinePrinter &P); 35 LinePrinter &Printer;
|
H A D | TypedefDumper.h | 17 class LinePrinter; 21 TypedefDumper(LinePrinter &P); 33 LinePrinter &Printer;
|
H A D | VariableDumper.h | 18 class LinePrinter; 22 VariableDumper(LinePrinter &P); 37 LinePrinter &Printer;
|
H A D | LinePrinter.cpp | 1 //===- LinePrinter.cpp ------------------------------------------*- C++ -*-===// 10 #include "LinePrinter.h" 42 LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream) function in class:LinePrinter 59 void LinePrinter::Indent() { CurrentIndent += IndentSpaces; } 61 void LinePrinter::Unindent() { 65 void LinePrinter::NewLine() { 70 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName) { 74 bool LinePrinter::IsSymbolExcluded(llvm::StringRef SymbolName) { 78 bool LinePrinter [all...] |
H A D | FunctionDumper.h | 17 class LinePrinter; 21 FunctionDumper(LinePrinter &P); 38 LinePrinter &Printer;
|
H A D | LinePrinter.h | 1 //===- LinePrinter.h ------------------------------------------ *- C++ --*-===// 22 class LinePrinter { class in namespace:llvm 26 LinePrinter(int Indent, raw_ostream &Stream); 61 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) { 81 WithColor(LinePrinter &P, PDB_ColorItem C);
|
H A D | ClassDefinitionDumper.h | 23 class LinePrinter; 27 ClassDefinitionDumper(LinePrinter &P); 40 LinePrinter &Printer;
|
H A D | ExternalSymbolDumper.cpp | 11 #include "LinePrinter.h" 19 ExternalSymbolDumper::ExternalSymbolDumper(LinePrinter &P)
|
H A D | Android.mk | 14 LinePrinter.cpp \
|
H A D | BuiltinDumper.cpp | 11 #include "LinePrinter.h" 18 BuiltinDumper::BuiltinDumper(LinePrinter &P)
|
H A D | EnumDumper.cpp | 13 #include "LinePrinter.h" 22 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {}
|
H A D | TypeDumper.cpp | 15 #include "LinePrinter.h" 28 TypeDumper::TypeDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {}
|
H A D | TypedefDumper.cpp | 14 #include "LinePrinter.h" 27 TypedefDumper::TypedefDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {}
|
H A D | FunctionDumper.cpp | 12 #include "LinePrinter.h" 33 void dumpClassParentWithScopeOperator(const T &Symbol, LinePrinter &Printer, 47 FunctionDumper::FunctionDumper(LinePrinter &P)
|
H A D | CompilandDumper.cpp | 11 #include "LinePrinter.h" 38 CompilandDumper::CompilandDumper(LinePrinter &P)
|
H A D | ClassDefinitionDumper.cpp | 13 #include "LinePrinter.h" 32 ClassDefinitionDumper::ClassDefinitionDumper(LinePrinter &P)
|
H A D | VariableDumper.cpp | 13 #include "LinePrinter.h" 31 VariableDumper::VariableDumper(LinePrinter &P)
|
H A D | llvm-pdbdump.cpp | 20 #include "LinePrinter.h" 421 LinePrinter Printer(2, outs());
|
Completed in 89 milliseconds