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

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/
ReporterApiTest.java 3 import org.testng.Reporter;
7 * Make sure we don't remove public API's from Reporter.
15 Reporter.log("foo");
16 Reporter.log("foo", false);
17 Reporter.log("foo", 2);
18 Reporter.log("foo", 2, false);
  /tools/test/connectivity/tools/lab/reporters/
file_reporter.py 17 from reporters import reporter
20 class FileReporter(Reporter):
reporter.py 18 class Reporter(object):
  /external/skia/tests/
TestUtils.h 16 void test_read_pixels(skiatest::Reporter*,
22 void test_write_pixels(skiatest::Reporter*,
27 void test_copy_from_surface(skiatest::Reporter*, GrContext*,
32 void test_copy_to_surface(skiatest::Reporter*, GrProxyProvider*,
PathOpsExtendedTest.h 19 void (*fun)(skiatest::Reporter*, const char* filename);
24 extern int comparePaths(skiatest::Reporter* reporter, const char* filename,
27 inline int comparePaths(skiatest::Reporter* reporter, const char* filename,
30 return comparePaths(reporter, filename, one, two, bitmap);
35 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
37 extern bool testPathOpCheck(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b
    [all...]
  /external/skqp/tests/
TestUtils.h 16 void test_read_pixels(skiatest::Reporter*,
22 void test_write_pixels(skiatest::Reporter*,
27 void test_copy_from_surface(skiatest::Reporter*, GrContext*,
32 void test_copy_to_surface(skiatest::Reporter*, GrProxyProvider*,
PathOpsExtendedTest.h 19 void (*fun)(skiatest::Reporter*, const char* filename);
24 extern int comparePaths(skiatest::Reporter* reporter, const char* filename,
27 inline int comparePaths(skiatest::Reporter* reporter, const char* filename,
30 return comparePaths(reporter, filename, one, two, bitmap);
35 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
37 extern bool testPathOpCheck(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b
    [all...]
  /external/testng/src/test/java/test/simple/
IncludedExcludedSampleTest.java 3 import org.testng.Reporter;
14 Reporter.log("beforeSuite");
19 Reporter.log("beforeTest");
24 Reporter.log("beforeTestClass");
29 Reporter.log("beforeTestMethod");
34 Reporter.log("Child.test1");
39 Reporter.log("Child.test2");
44 Reporter.log("Child.test3");
  /external/testng/src/test/java/test/tmp/
TestNGBug.java 3 import org.testng.Reporter;
14 Reporter.log("Child.test1");
19 Reporter.log("Child.test2");
24 Reporter.log("Child.test3");
ParamTest.java 3 import org.testng.Reporter;
12 Reporter.log("CALL " + n);
Tn.java 3 import org.testng.Reporter;
22 Reporter.log("M3 WAS CALLED");
  /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 {
  /libcore/luni/src/main/java/libcore/io/
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...]
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...]
  /external/testng/src/test/java/test/reports/
ReporterLogSampleTest.java 4 import org.testng.Reporter;
16 Reporter.log("Log from listener");
23 Reporter.log("Log from test method");
ReporterTest.java 12 Reporter.log ("foo");
16 Reporter.log ("bar"); // This line is required. Else the log that was triggered from onStart() would never be
18 Assert.assertTrue (Reporter.getOutput ().size () == 2);
EmailableReportDriver.java 4 import org.testng.Reporter;
24 Reporter.log("Preparing to fail");
29 Reporter.log("step 1");
30 Reporter.log("step 2");
ReporterSampleTest.java 3 import org.testng.Reporter;
26 Reporter.log("IN THE REPORTER: " + p);
  /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/mockito/src/main/java/org/mockito/internal/util/
MockCreationValidator.java 7 import static org.mockito.internal.exceptions.Reporter.cannotMockClass;
8 import static org.mockito.internal.exceptions.Reporter.extraInterfacesCannotContainMockedType;
9 import static org.mockito.internal.exceptions.Reporter.mockedTypeIsInconsistentWithDelegatedInstanceType;
10 import static org.mockito.internal.exceptions.Reporter.mockedTypeIsInconsistentWithSpiedInstanceType;
11 import static org.mockito.internal.exceptions.Reporter.usingConstructorWithFancySerializable;
  /libcore/dalvik/src/main/java/dalvik/system/
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/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
BaseTagElementNodeScanner.java 18 import com.google.currysrc.api.process.Reporter;
30 @Override protected final void visit(final Reporter reporter, Javadoc javadoc,
35 return visitTagElement(reporter, rewrite, node);
40 protected abstract boolean visitTagElement(Reporter reporter, ASTRewrite rewrite, TagElement tag);
BaseJavadocTagJavadoc.java 19 import com.google.currysrc.api.process.Reporter;
36 @Override protected final void visit(Reporter reporter, Javadoc javadoc, ASTRewrite rewrite) {
  /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) {

Completed in 4765 milliseconds

1 2 3 4 5 6 7 8 91011>>