HomeSort by relevance Sort by last modified time
    Searched defs:Reporter (Results 1 - 25 of 139) 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/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.invocationListenerDoesNotAcceptNullParameters();
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/mockito/src/main/java/org/mockito/internal/stubbing/answers/
ReturnsArgumentAt.java 9 import org.mockito.internal.exceptions.Reporter;
40 throw Reporter.invalidArgumentRangeAtIdentityAnswerCreationTime();
74 throw Reporter.invalidArgumentPositionRangeAtInvocationTime(invocation,
84 throw Reporter.wrongTypeOfArgumentToReturn(invocation,
  /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...]
  /external/mockito/src/main/java/org/mockito/internal/framework/
DefaultMockitoSession.java 7 import org.mockito.internal.exceptions.Reporter;
25 Reporter.unfinishedMockingSession();
  /frameworks/base/cmds/incidentd/src/
Reporter.cpp 19 #include "Reporter.h"
127 Reporter::Reporter()
143 Reporter::~Reporter()
147 Reporter::run_report_status_t
148 Reporter::runReport()
283 Reporter::create_file(int* fd)
307 Reporter::run_report_status_t
308 Reporter::upload_backlog(
    [all...]
Reporter.h 72 class Reporter : public virtual RefBase
83 Reporter();
84 virtual ~Reporter();
  /external/mockito/src/main/java/org/mockito/internal/junit/
DefaultStubbingLookupListener.java 3 import org.mockito.internal.exceptions.Reporter;
40 Reporter.potentialStubbingProblem(invocation, argMismatchStubbings);
  /libcore/luni/src/test/java/libcore/dalvik/system/
BaseDexClassLoaderTest.java 32 private static class Reporter implements BaseDexClassLoader.Reporter {
50 // Set the reporter.
51 Reporter reporter = new Reporter(); local
52 BaseDexClassLoader.setReporter(reporter);
56 // Verify the reporter files.
57 assertEquals(1, reporter.loadedDexPaths.size());
58 assertEquals(jar.getPath(), reporter.loadedDexPaths.get(0))
    [all...]
  /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/dalvik/src/main/java/dalvik/system/
BaseDexClassLoader.java 43 /* @NonNull */ private static volatile Reporter reporter = null; field in class:BaseDexClassLoader
67 if (reporter != null) {
68 reporter.report(this.pathList.getDexPaths());
187 * Sets the reporter for dex load notifications.
191 * @param newReporter the new Reporter. Setting null will cancel reporting.
194 public static void setReporter(Reporter newReporter) {
195 reporter = newReporter;
201 public static Reporter getReporter() {
202 return reporter;
    [all...]
CloseGuard.java 118 private static volatile Reporter REPORTER = new DefaultReporter();
159 * Used to replace default Reporter used to warn of CloseGuard
162 public static void setReporter(Reporter reporter) {
163 if (reporter == null) {
164 throw new NullPointerException("reporter == null");
166 REPORTER = reporter;
170 * Returns non-null CloseGuard.Reporter
    [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 40 class Reporter : SkNoncopyable {
42 virtual ~Reporter() {}
74 #define REPORT_FAILURE(reporter, cond, message) \
75 reporter->reportFailedWithContext(skiatest::Failure(__FILE__, __LINE__, cond, message))
79 ReporterContext(Reporter* reporter, const SkString& message) : fReporter(reporter) {
87 Reporter* fReporter;
90 typedef void (*TestProc)(skiatest::Reporter*, sk_gpu_test::GrContextFactory*);
106 DEF_TEST(TestName, 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/autotest/server/cros/dynamic_suite/
reporting.py 438 class Reporter(object):
491 this 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...]
  /external/mockito/src/main/java/org/mockito/internal/exceptions/
Reporter.java 41 * Reporter can be injected and therefore is easily testable.
46 public class Reporter {
48 private Reporter() {
    [all...]

Completed in 786 milliseconds

1 2 3 4 5 6