HomeSort by relevance Sort by last modified time
    Searched refs:Reporter (Results 26 - 50 of 379) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/dm/
DMSKPTask.h 17 SKPTask(Reporter*, TaskRunner*, const SkPicture*, SkString name);
DMCpuGMTask.h 20 Reporter*,
DMGpuGMTask.h 20 Reporter*,
  /external/chromium_org/third_party/skia/tests/
GpuRectanizerTest.cpp 21 static void test_rectanizer_basic(skiatest::Reporter* reporter, GrRectanizer* rectanizer) {
22 REPORTER_ASSERT(reporter, kWidth == rectanizer->width());
23 REPORTER_ASSERT(reporter, kHeight == rectanizer->height());
27 REPORTER_ASSERT(reporter, rectanizer->addRect(50, 50, &loc));
28 REPORTER_ASSERT(reporter, rectanizer->percentFull() > 0.0f);
30 REPORTER_ASSERT(reporter, rectanizer->percentFull() == 0.0f);
33 static void test_rectanizer_inserts(skiatest::Reporter*,
47 static void test_skyline(skiatest::Reporter* reporter, const SkTDArray<SkISize>& rects)
    [all...]
PathOpsSimplifyTest.cpp 11 static void testLine1(skiatest::Reporter* reporter, const char* filename) {
17 testSimplify(reporter, path, filename);
20 static void testLine1x(skiatest::Reporter* reporter, const char* filename) {
27 testSimplify(reporter, path, filename);
58 static void testLine2(skiatest::Reporter* reporter, const char* filename) {
62 testSimplify(reporter, path, filename);
65 static void testLine2x(skiatest::Reporter* reporter, const char* filename)
    [all...]
GrDrawTargetTest.cpp 17 static void test_print(skiatest::Reporter*, const GrDrawTargetCaps* caps) {
23 DEF_GPUTEST(GrDrawTarget, reporter, factory) {
32 test_print(reporter, grContext->getGpu()->caps());
PathOpsThreadedCommon.h 19 class Reporter;
30 skiatest::Reporter* fReporter;
36 PathOpsThreadedTestRunner(skiatest::Reporter* reporter) : fReporter(reporter) {}
44 skiatest::Reporter* fReporter;
TDStackNesterTest.cpp 16 static void test_push(skiatest::Reporter* reporter, SkTDStackNester<int>* nester) {
21 REPORTER_ASSERT(reporter, nester->count() == count + 1);
29 static void test_pop(skiatest::Reporter* reporter, SkTDStackNester<int>* nester) {
37 REPORTER_ASSERT(reporter, top == value);
39 REPORTER_ASSERT(reporter, newCount == count - 1);
42 REPORTER_ASSERT(reporter, newCount == value);
51 static void test_nest(skiatest::Reporter* reporter, SkTDStackNester<int>* nester, int inc)
    [all...]
  /external/mockito/src/org/mockito/internal/verification/checkers/
MissingInvocationChecker.java 10 import org.mockito.exceptions.Reporter;
19 private final Reporter reporter; field in class:MissingInvocationChecker
23 this(new InvocationsFinder(), new Reporter());
26 MissingInvocationChecker(InvocationsFinder finder, Reporter reporter) {
28 this.reporter = reporter;
40 reporter.argumentsAreDifferent(smartPrinter.getWanted(), smartPrinter.getActual(), similar.getLocation());
42 reporter.wantedButNotInvoked(wanted, invocations)
    [all...]
NonGreedyNumberOfInvocationsInOrderChecker.java 8 import org.mockito.exceptions.Reporter;
22 private final Reporter reporter; field in class:NonGreedyNumberOfInvocationsInOrderChecker
26 this(new InvocationsFinder(), new Reporter(), new InvocationMarker());
29 NonGreedyNumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter, InvocationMarker marker ) {
31 this.reporter = reporter;
41 reporter.tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastLocation );
NumberOfInvocationsChecker.java 10 import org.mockito.exceptions.Reporter;
20 private final Reporter reporter; field in class:NumberOfInvocationsChecker
25 this(new Reporter(), new InvocationsFinder());
28 NumberOfInvocationsChecker(Reporter reporter, InvocationsFinder finder) {
29 this.reporter = reporter;
39 reporter.tooLittleActualInvocations(new Discrepancy(wantedCount, actualCount), wanted, lastInvocation);
42 reporter.neverWantedButInvoked(wanted, firstUndesired);
    [all...]
NumberOfInvocationsInOrderChecker.java 10 import org.mockito.exceptions.Reporter;
21 private final Reporter reporter; field in class:NumberOfInvocationsInOrderChecker
26 this(new InvocationsFinder(), new Reporter());
29 NumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter) {
31 this.reporter = reporter;
41 reporter.tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastInvocation);
44 reporter.tooManyActualInvocationsInOrder(wantedCount, actualCount, wanted, firstUndesired)
    [all...]
MissingInvocationInOrderChecker.java 10 import org.mockito.exceptions.Reporter;
21 private final Reporter reporter; field in class:MissingInvocationInOrderChecker
25 this(new InvocationsFinder(), new Reporter());
28 MissingInvocationInOrderChecker(InvocationsFinder finder, Reporter reporter) {
30 this.reporter = reporter;
57 reporter.argumentsAreDifferent(smartPrinter.getWanted(), smartPrinter.getActual(), similar.getLocation());
59 reporter.wantedButNotInvoked(wanted)
    [all...]
  /external/objenesis/tck/src/org/objenesis/tck/
Reporter.java 34 public interface Reporter {
  /external/skia/dm/
DMSKPTask.h 17 SKPTask(Reporter*, TaskRunner*, SkPicture*, SkString name);
DMCpuGMTask.h 21 Reporter*,
DMGpuGMTask.h 21 Reporter*,
  /external/skia/tests/
GpuRectanizerTest.cpp 21 static void test_rectanizer_basic(skiatest::Reporter* reporter, GrRectanizer* rectanizer) {
22 REPORTER_ASSERT(reporter, kWidth == rectanizer->width());
23 REPORTER_ASSERT(reporter, kHeight == rectanizer->height());
27 REPORTER_ASSERT(reporter, rectanizer->addRect(50, 50, &loc));
28 REPORTER_ASSERT(reporter, rectanizer->percentFull() > 0.0f);
30 REPORTER_ASSERT(reporter, rectanizer->percentFull() == 0.0f);
33 static void test_rectanizer_inserts(skiatest::Reporter*,
47 static void test_skyline(skiatest::Reporter* reporter, const SkTDArray<SkISize>& rects)
    [all...]
PathOpsSimplifyTest.cpp 11 static void testLine1(skiatest::Reporter* reporter, const char* filename) {
17 testSimplify(reporter, path, filename);
20 static void testLine1x(skiatest::Reporter* reporter, const char* filename) {
27 testSimplify(reporter, path, filename);
58 static void testLine2(skiatest::Reporter* reporter, const char* filename) {
62 testSimplify(reporter, path, filename);
65 static void testLine2x(skiatest::Reporter* reporter, const char* filename)
    [all...]
  /external/chromium_org/third_party/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/mockito/src/org/mockito/internal/configuration/injection/filter/
FinalMockCandidateFilter.java 7 import org.mockito.exceptions.Reporter;
34 new Reporter().cannotInjectDependency(field, matchingMock, e);
  /external/mockito/src/org/mockito/internal/invocation/
MatchersBinder.java 9 import org.mockito.exceptions.Reporter;
35 new Reporter().invalidUseOfMatchers(expectedMatchersSize, lastMatchers);
  /external/mockito/src/org/mockito/internal/matchers/
CapturingMatcher.java 13 import org.mockito.exceptions.Reporter;
37 new Reporter().noArgumentValueWasCaptured();
  /external/mockito/src/org/mockito/internal/verification/
VerificationDataImpl.java 9 import org.mockito.exceptions.Reporter;
41 new Reporter().cannotVerifyToString();
  /external/mockito/src/org/mockito/internal/stubbing/answers/
AnswersValidator.java 7 import org.mockito.exceptions.Reporter;
13 private Reporter reporter = new Reporter(); field in class:AnswersValidator
44 new Reporter().wrongTypeOfArgumentToReturn(invocation, methodInfo.printMethodReturnType(),
53 reporter.cannotCallRealMethodOnInterface();
59 reporter.onlyVoidMethodsCanBeSetToDoNothing();
65 reporter.cannotStubVoidMethodWithAReturnValue(methodInfo.getMethodName());
69 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), "null", methodInfo.getMethodName());
73 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), answer.printReturnType(), methodInfo.ge (…)
    [all...]

Completed in 487 milliseconds

12 3 4 5 6 7 8 91011>>