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

1 2 3 4 5 6

  /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/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Reporter.java 23 public interface Reporter {
  /external/chromium-trace/catapult/third_party/coverage/coverage/
summary.py 9 from coverage.report import Reporter
14 class SummaryReporter(Reporter):
15 """A reporter for writing the summary report."""
annotate.py 12 from coverage.report import Reporter
17 class AnnotateReporter(Reporter):
20 This reporter creates annotated copies of the measured source files. Each
report.py 4 """Reporter foundation for coverage.py."""
14 class Reporter(object):
18 """Create a reporter.
xmlreport.py 15 from coverage.report import Reporter
35 class XmlReporter(Reporter):
36 """A reporter for writing Cobertura-style XML coverage results."""
  /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...]
  /external/opencv3/modules/core/test/
test_ptr.cpp 48 struct Reporter {
49 Reporter(bool* deleted) : deleted_(deleted)
53 virtual ~Reporter()
59 Reporter(const Reporter&);
60 Reporter& operator = (const Reporter&);
89 Reporter* r = new Reporter(&deleted);
116 Ptr<Reporter> p1(new Reporter(&deleted))
    [all...]
  /external/testng/src/main/java/org/testng/
Reporter.java 20 * The reporter keeps a combined output of strings (in m_output) and also
23 * Reporter maintains a mapping of each test result with a list of integers.
30 public class Reporter {
  /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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /external/skia/tests/
Test.h 33 class Reporter : SkNoncopyable {
35 virtual ~Reporter() {}
42 #define REPORT_FAILURE(reporter, cond, message) \
43 reporter->reportFailed(skiatest::Failure(__FILE__, __LINE__, cond, message))
45 typedef void (*TestProc)(skiatest::Reporter*, GrContextFactory*);
61 DEF_TEST(TestName, reporter) {
63 REPORTER_ASSERT(reporter, x == 15);
65 REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15");
68 ERRORF(reporter, "x should be 15, but is %d", x);
86 void RunWithGPUTestContexts(T testFunction, GPUTestContexts contexts, Reporter* 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/autotest/server/site_tests/network_WiFi_RoamOnLowPower/
network_WiFi_RoamOnLowPower.py 18 class Reporter(object):
30 """Initializes reporter.
127 reporter = Reporter(connection)
132 stdout_tee=reporter,
  /external/chromium-trace/catapult/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/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/autotest/server/cros/dynamic_suite/
reporting.py 394 class Reporter(object):
444 this reporter.
    [all...]

Completed in 1202 milliseconds

1 2 3 4 5 6