HomeSort by relevance Sort by last modified time
    Searched defs:Reporter (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/google-breakpad/src/client/solaris/handler/
minidump_test.cc 43 static void *Reporter(void *) {
66 if (pthread_create(&reporter_thread, NULL, Reporter, NULL) == 0) {
  /external/objenesis/tck/src/org/objenesis/tck/
Reporter.java 34 public interface Reporter {
  /libcore/luni/src/main/java/libcore/io/
DropBox.java 24 private static volatile Reporter REPORTER = new DefaultReporter();
27 * Used to replace default Reporter for logging events. Must be non-null.
29 public static void setReporter(Reporter reporter) {
30 if (reporter == null) {
31 throw new NullPointerException("reporter == null");
33 REPORTER = reporter;
37 * Returns non-null Reporter
    [all...]
EventLogger.java 24 private static volatile Reporter REPORTER = new DefaultReporter();
27 * Used to replace default Reporter for logging events. Must be non-null.
29 public static void setReporter(Reporter reporter) {
30 if (reporter == null) {
31 throw new NullPointerException("reporter == null");
33 REPORTER = reporter;
37 * Returns non-null Reporter
    [all...]
  /external/google-breakpad/src/common/
dwarf_cfi_to_module.h 68 class Reporter {
70 // Create a reporter that writes messages to the standard error
74 Reporter(const string &file, const string &section)
76 virtual ~Reporter() { }
131 // Use REPORTER for reporting problems encountered in the conversion
134 Reporter *reporter)
135 : module_(module), register_names_(register_names), reporter_(reporter),
169 // The reporter to use to report problems.
170 Reporter *reporter_
    [all...]
dwarf_cu_to_module_unittest.cc 1730 DwarfCUToModule::WarningReporter reporter; member in struct:Reporter
    [all...]
  /external/skia/tests/
Test.h 31 class Reporter : SkNoncopyable {
33 virtual ~Reporter() {}
40 #define REPORT_FAILURE(reporter, cond, message) \
41 reporter->reportFailed(skiatest::Failure(__FILE__, __LINE__, cond, message))
43 typedef void (*TestProc)(skiatest::Reporter*, GrContextFactory*);
59 DEF_TEST(TestName, reporter) {
61 REPORTER_ASSERT(reporter, x == 15);
63 REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15");
66 ERRORF(reporter, "x should be 15, but is %d", x);
93 #define DEF_TEST(name, reporter) \
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 118 private static volatile Reporter REPORTER = new DefaultReporter();
142 * Used to replace default Reporter used to warn of CloseGuard
145 public static void setReporter(Reporter reporter) {
146 if (reporter == null) {
147 throw new NullPointerException("reporter == null");
149 REPORTER = reporter;
153 * Returns non-null CloseGuard.Reporter
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 13 from docutils.utils import Reporter
19 class SilentReporter(Reporter):
24 Reporter.__init__(self, source, report_level, halt_level, stream,
133 reporter = SilentReporter(source_path,
141 document = nodes.document(settings, reporter, source=source_path)
146 reporter.messages.append((-1, 'Could not finish the parsing.',
149 return reporter.messages
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 13 from docutils.utils import Reporter
19 class SilentReporter(Reporter):
24 Reporter.__init__(self, source, report_level, halt_level, stream,
133 reporter = SilentReporter(source_path,
141 document = nodes.document(settings, reporter, source=source_path)
146 reporter.messages.append((-1, 'Could not finish the parsing.',
149 return reporter.messages
  /external/google-breakpad/src/common/mac/
macho_reader.h 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 {
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_mini.h 33 class Reporter {
35 virtual ~Reporter() {}
59 static int run(Reporter *in_reporter = 0, const char *in_testName = "", bool invert = false);
128 static Reporter *m_reporter;
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_mini.h 33 class Reporter {
35 virtual ~Reporter() {}
59 static int run(Reporter *in_reporter = 0, const char *in_testName = "", bool invert = false);
128 static Reporter *m_reporter;
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
reporter.py 14 class Reporter(object):
37 class EmailReporter(Reporter):
102 class LogReporter(Reporter):
120 class FileReporter(Reporter):
134 class WSGIAppReporter(Reporter):
  /external/skia/forth/
ForthTests.cpp 11 class Reporter {
15 Reporter() : fFailureCount(0) {}
20 typedef void (*ForthWordTestProc)(ForthWord*, ForthEngine*, Reporter*);
22 #define FORTH_ASSERT(reporter, expression) \
25 reporter->reportFailure(#expression, __FILE__, __LINE__); \
29 static void drop_test0(ForthWord* word, ForthEngine* fe, Reporter* reporter) {
32 FORTH_ASSERT(reporter, 0 == fe->depth());
35 static void drop_test1(ForthWord* word, ForthEngine* fe, Reporter* reporter) {
384 Reporter reporter; local
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.h 573 // A reporter class, which CallFrameInfo uses to report errors
575 class Reporter;
579 // REPORTER is an error reporter the parser should use to report
641 ByteReader *reader, Handler *handler, Reporter *reporter,
644 reader_(reader), handler_(handler), reporter_(reporter),
    [all...]
  /external/clang/tools/scan-view/
ScanView.py 15 import Reporter
66 # be enabled. Also the radar reporter needs to be fixed to report
86 def __init__(self, report, reporter, parameters, server):
90 self.reporter = reporter
100 self.status = self.reporter.fileReport(self.report, self.parameters)
105 except Reporter.ReportFailure,e:
284 reporterIndex = self.get_scalar_field('reporter')
304 # Get the reporter and parameters.
305 reporter = self.server.reporters[reporterIndex
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
ScanView.py 15 import Reporter
66 # be enabled. Also the radar reporter needs to be fixed to report
86 def __init__(self, report, reporter, parameters, server):
90 self.reporter = reporter
100 self.status = self.reporter.fileReport(self.report, self.parameters)
105 except Reporter.ReportFailure,e:
284 reporterIndex = self.get_scalar_field('reporter')
304 # Get the reporter and parameters.
305 reporter = self.server.reporters[reporterIndex
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
ScanView.py 15 import Reporter
66 # be enabled. Also the radar reporter needs to be fixed to report
86 def __init__(self, report, reporter, parameters, server):
90 self.reporter = reporter
100 self.status = self.reporter.fileReport(self.report, self.parameters)
105 except Reporter.ReportFailure,e:
284 reporterIndex = self.get_scalar_field('reporter')
304 # Get the reporter and parameters.
305 reporter = self.server.reporters[reporterIndex
    [all...]
  /external/mockito/src/org/mockito/exceptions/
Reporter.java 39 * Reporter can be injected and therefore is easily testable.
44 public class Reporter {
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/23.1.0/
lint-23.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/23.1.3/
lint-23.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/23.1.4/
lint-23.1.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/23.2.0/
lint-23.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/23.2.1/
lint-23.2.1.jar 

Completed in 566 milliseconds

1 2 3 4