Lines Matching refs:Reporter
77 class Reporter {
79 // Create a reporter that attributes problems to |filename|.
80 explicit Reporter(const string &filename) : filename_(filename) { }
82 virtual ~Reporter() { }
102 // Create a fat binary file reader that uses |reporter| to report problems.
103 explicit FatReader(Reporter *reporter) : reporter_(reporter) { }
141 Reporter *reporter_;
235 class Reporter {
237 // Create a reporter that attributes problems to |filename|.
238 explicit Reporter(const string &filename) : filename_(filename) { }
239 virtual ~Reporter() { }
241 // Reporter functions for fatal errors return void; the reader will
359 // Create a Mach-O file reader that reports problems to |reporter|.
360 explicit Reader(Reporter *reporter)
361 : reporter_(reporter) { }
427 Reporter *reporter_;