Lines Matching full:printer
25 class Printer {
36 Printer();
37 virtual ~Printer();
38 }; // class Printer
41 class LogPrinter : public Printer {
43 // Create a printer using the specified logcat and log priority
64 class FdPrinter : public Printer {
66 // Create a printer using the specified file descriptor.
88 class String8Printer : public Printer {
90 // Create a printer using the specified String8 as the target.
103 // Print to an existing Printer by adding a prefix to each line
104 class PrefixPrinter : public Printer {
106 // Create a printer using the specified printer as the target.
107 PrefixPrinter(Printer& printer, const char* prefix);
109 // Print the line (prefixed with prefix) using the printer.
113 Printer& mPrinter;