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

1 2 3 4 5 6 7

  /tools/test/connectivity/tools/lab/reporters/
reporter.py 18 class Reporter(object):
  /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/mockito/src/test/java/org/mockito/internal/exceptions/
ReporterTest.java 29 throw Reporter.tooLittleActualInvocations(new org.mockito.internal.reporting.Discrepancy(1, 2), new InvocationBuilder().toInvocation(), null);
34 throw Reporter.methodDoesNotAcceptParameter("invocationListeners", "null vararg array");
40 throw Reporter.noMoreInteractionsWanted(invocation_with_bogus_default_answer, Collections.<VerificationAwareInvocation>emptyList());
46 throw Reporter.noMoreInteractionsWantedInOrder(invocation_with_bogus_default_answer);
52 throw Reporter.invalidArgumentPositionRangeAtInvocationTime(invocation_with_bogus_default_answer, true, 0);
58 throw Reporter.wrongTypeOfArgumentToReturn(invocation_with_bogus_default_answer, "", String.class, 0);
65 throw Reporter.delegatedMethodDoesNotExistOnDelegate(dumb_invocation.getMethod(), mock_with_bogus_default_answer, String.class);
72 throw Reporter.delegatedMethodHasWrongReturnType(dumb_invocation.getMethod(), dumb_invocation.getMethod(), mock_with_bogus_default_answer, String.class);
78 throw Reporter.cannotInjectDependency(someField(), mock_with_bogus_default_answer, new Exception());
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
Reporter.java 34 public interface Reporter {
  /libcore/luni/src/main/java/libcore/io/
DropBox.java 26 private static volatile Reporter REPORTER = new DefaultReporter();
29 * Used to replace default Reporter for logging events. Must be non-null.
31 public static void setReporter(Reporter reporter) {
32 if (reporter == null) {
33 throw new NullPointerException("reporter == null");
35 REPORTER = reporter;
39 * 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...]
  /frameworks/base/services/robotests/src/com/android/server/testing/shadows/
ShadowCloseGuard.java 25 private static final Reporter REPORTER = new Reporter();
28 return REPORTER.mReports > 0;
35 // REPORTER field (inside CloseGuard) will be assigned *after* setReporter() is called.
36 CloseGuard.setReporter(REPORTER);
37 REPORTER.mReports = 0;
40 private static class Reporter implements CloseGuard.Reporter {
  /external/mockito/src/main/java/org/mockito/internal/framework/
DefaultMockitoSession.java 11 import org.mockito.internal.exceptions.Reporter;
33 Reporter.unfinishedMockingSession();
  /external/mockito/src/main/java/org/mockito/internal/junit/
DefaultStubbingLookupListener.java 7 import org.mockito.internal.exceptions.Reporter;
44 Reporter.potentialStubbingProblem(invocation, argMismatchStubbings);
  /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/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/luni/src/test/java/libcore/dalvik/system/
BaseDexClassLoaderTest.java 32 private static class Reporter implements BaseDexClassLoader.Reporter {
52 // Set the reporter.
53 Reporter reporter = new Reporter(); local
54 BaseDexClassLoader.setReporter(reporter);
59 // Verify the reporter files.
60 assertEquals(2, reporter.loadedDexPaths.size());
61 assertEquals(2, reporter.classLoaders.size())
    [all...]
  /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 42 class Reporter : SkNoncopyable {
44 virtual ~Reporter() {}
76 #define REPORT_FAILURE(reporter, cond, message) \
77 reporter->reportFailedWithContext(skiatest::Failure(__FILE__, __LINE__, cond, message))
81 ReporterContext(Reporter* reporter, const SkString& message) : fReporter(reporter) {
89 Reporter* fReporter;
92 typedef void (*TestProc)(skiatest::Reporter*, const GrContextOptions&);
109 void run(skiatest::Reporter* r, const GrContextOptions& options) const
    [all...]
  /external/skqp/tests/
Test.h 42 class Reporter : SkNoncopyable {
44 virtual ~Reporter() {}
76 #define REPORT_FAILURE(reporter, cond, message) \
77 reporter->reportFailedWithContext(skiatest::Failure(__FILE__, __LINE__, cond, message))
81 ReporterContext(Reporter* reporter, const SkString& message) : fReporter(reporter) {
89 Reporter* fReporter;
92 typedef void (*TestProc)(skiatest::Reporter*, const GrContextOptions&);
109 void run(skiatest::Reporter* r, const GrContextOptions& options) const
    [all...]
  /frameworks/base/cmds/incidentd/src/
Reporter.cpp 19 #include "Reporter.h"
106 Reporter::Reporter() : Reporter(INCIDENT_DIRECTORY) { isTest = false; };
108 Reporter::Reporter(const char* directory) : batch() {
125 Reporter::~Reporter() {}
127 Reporter::run_report_status_t Reporter::runReport(size_t* reportByteSize)
    [all...]
Reporter.h 85 class Reporter : public virtual RefBase {
91 Reporter(); // PROD must use this constructor.
92 Reporter(const char* directory); // For testing purpose only.
93 virtual ~Reporter();
  /libcore/dalvik/src/main/java/dalvik/system/
BaseDexClassLoader.java 44 /* @NonNull */ private static volatile Reporter reporter = null; field in class:BaseDexClassLoader
76 if (reporter != null) {
82 * Reports the current class loader chain to the registered {@code reporter}.
109 reporter.report(classLoadersChain, classPaths);
244 * Sets the reporter for dex load notifications.
248 * @param newReporter the new Reporter. Setting null will cancel reporting.
251 public static void setReporter(Reporter newReporter) {
252 reporter = newReporter;
258 public static Reporter getReporter()
    [all...]
CloseGuard.java 126 private static volatile Reporter reporter = new DefaultReporter(); field in class:CloseGuard
145 * #getReporter() reporter} is informed of unclosed resources; otherwise a
160 * Used to replace default Reporter used to warn of CloseGuard
163 public static void setReporter(Reporter rep) {
165 throw new NullPointerException("reporter == null");
167 CloseGuard.reporter = rep;
171 * Returns non-null CloseGuard.Reporter.
173 public static Reporter getReporter() {
174 return reporter;
    [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/protobuf/src/google/protobuf/util/
message_differencer.h 71 // are found, the Compare method will return false, and any differencer reporter
216 class LIBPROTOBUF_EXPORT Reporter {
218 Reporter();
219 virtual ~Reporter();
273 // these fields at all. It is up to the Reporter to decide whether
283 // path has a null field. This could break existing Reporter.
289 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Reporter);
339 // To add a Reporter, construct default here, then use ReportDifferencesTo or
481 // ReportIgnored is called on the reporter, if one is specified.
543 // two messages will be reported if a Reporter was specified vi
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 71 // are found, the Compare method will return false, and any differencer reporter
216 class LIBPROTOBUF_EXPORT Reporter {
218 Reporter();
219 virtual ~Reporter();
273 // these fields at all. It is up to the Reporter to decide whether
283 // path has a null field. This could break existing Reporter.
289 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Reporter);
339 // To add a Reporter, construct default here, then use ReportDifferencesTo or
481 // ReportIgnored is called on the reporter, if one is specified.
543 // two messages will be reported if a Reporter was specified vi
    [all...]

Completed in 1180 milliseconds

1 2 3 4 5 6 7