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

<<111213141516

  /external/skia/tests/
PackBitsTest.cpp 23 static void test_pack16(skiatest::Reporter* reporter) {
42 REPORTER_ASSERT(reporter, match);
53 REPORTER_ASSERT(reporter, maxSize >= dstSize);
56 REPORTER_ASSERT(reporter, size == srcCount);
58 REPORTER_ASSERT(reporter, match);
73 static void test_pack8(skiatest::Reporter* reporter) {
90 REPORTER_ASSERT(reporter, dstSize <= maxSize);
96 REPORTER_ASSERT(reporter, match)
    [all...]
PathOpsCubicLineIntersectionTest.cpp 27 static void testFail(skiatest::Reporter* reporter, int iIndex) {
38 REPORTER_ASSERT(reporter, 0);
42 REPORTER_ASSERT(reporter, 0);
47 REPORTER_ASSERT(reporter, roots == 0);
119 static void testOne(skiatest::Reporter* reporter, int iIndex) {
130 REPORTER_ASSERT(reporter, 0);
134 REPORTER_ASSERT(reporter, 0);
148 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2))
    [all...]
skia_test.cpp 53 Test* next(Reporter* r) {
68 class DebugfReporter : public Reporter {
183 while ((test = iter.next(NULL/*reporter not needed*/)) != NULL) {
199 DebugfReporter reporter(toRun);
201 SkAutoTDelete<Test> test(iter.next(&reporter));
229 toRun, failCount, skipCount, reporter.countTests());
PathOpsSkpClipTest.cpp 311 void init(int dirNo, skiatest::Reporter* reporter) {
312 fReporter = reporter;
318 skiatest::Reporter* fReporter;
323 TestRunner(skiatest::Reporter* reporter, int threadCount)
325 , fReporter(reporter) {
332 skiatest::Reporter* fReporter;
772 skiatest::Reporter* reporter = state->fReporter local
    [all...]
LListTest.cpp 32 skiatest::Reporter* reporter,
38 REPORTER_ASSERT(reporter, empty == list.isEmpty());
41 REPORTER_ASSERT(reporter, numElements == list.countEntries());
42 REPORTER_ASSERT(reporter, in0 == list.isInList(&elements[0]));
43 REPORTER_ASSERT(reporter, in1 == list.isInList(&elements[1]));
44 REPORTER_ASSERT(reporter, in2 == list.isInList(&elements[2]));
45 REPORTER_ASSERT(reporter, in3 == list.isInList(&elements[3]));
49 static void TestTInternalLList(skiatest::Reporter* reporter) {
    [all...]
GpuColorFilterTest.cpp 35 static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrContext* grContext) {
106 REPORTER_ASSERT(reporter, filterColor(color, components) == test.outputColor);
107 REPORTER_ASSERT(reporter, test.outputComponents == components);
111 DEF_GPUTEST(GpuColorFilter, reporter, factory) {
120 test_getConstantColorComponents(reporter, grContext);
ImageCacheTest.cpp 19 static void test_cache(skiatest::Reporter* reporter, SkScaledImageCache& cache,
34 REPORTER_ASSERT(reporter, NULL == id);
38 REPORTER_ASSERT(reporter, NULL != id);
43 REPORTER_ASSERT(reporter, id == id2);
44 REPORTER_ASSERT(reporter, tmp.pixelRef() == tmp2.pixelRef());
45 REPORTER_ASSERT(reporter, tmp.width() == tmp2.width());
46 REPORTER_ASSERT(reporter, tmp.height() == tmp2.height());
63 REPORTER_ASSERT(reporter, NULL != id);
88 DEF_TEST(ImageCache, reporter) {
    [all...]
MetaDataTest.cpp 11 static void test_ptrs(skiatest::Reporter* reporter) {
13 REPORTER_ASSERT(reporter, 1 == ref.getRefCnt());
20 REPORTER_ASSERT(reporter, md0.findRefCnt(name));
21 REPORTER_ASSERT(reporter, md0.hasRefCnt(name, &ref));
22 REPORTER_ASSERT(reporter, 2 == ref.getRefCnt());
25 REPORTER_ASSERT(reporter, md1.findRefCnt(name));
26 REPORTER_ASSERT(reporter, md1.hasRefCnt(name, &ref));
27 REPORTER_ASSERT(reporter, 3 == ref.getRefCnt());
29 REPORTER_ASSERT(reporter, md0.removeRefCnt(name))
    [all...]
PathOpsQuadLineIntersectionTest.cpp 79 static void testOneOffs(skiatest::Reporter* reporter) {
97 REPORTER_ASSERT(reporter, quadXY.approximatelyEqual(lineXY));
102 DEF_TEST(PathOpsQuadLineIntersectionOneOff, reporter) {
103 testOneOffs(reporter);
106 DEF_TEST(PathOpsQuadLineIntersection, reporter) {
118 REPORTER_ASSERT(reporter, 0);
122 REPORTER_ASSERT(reporter, 0);
127 REPORTER_ASSERT(reporter, result == lineQuadTests[index].result);
133 REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1)
    [all...]
PathOpsQuadLineIntersectionThreadedTest.cpp 41 static void testLineIntersect(skiatest::Reporter* reporter, const SkDQuad& quad,
65 REPORTER_ASSERT(reporter, found);
113 DEF_TEST(PathOpsQuadLineIntersectionThreaded, reporter) {
114 int threadCount = initializeTests(reporter, "testQuadLineIntersect");
115 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
122 if (!reporter->allowExtendedTest()) goto finish;
ImageFilterTest.cpp 47 MatrixTestImageFilter(skiatest::Reporter* reporter, const SkMatrix& expectedMatrix)
48 : SkImageFilter(0), fReporter(reporter), fExpectedMatrix(expectedMatrix) {
61 fReporter = static_cast<skiatest::Reporter*>(buffer.readFunctionPtr());
71 skiatest::Reporter* fReporter;
131 DEF_TEST(ImageFilter, reporter) {
136 REPORTER_ASSERT(reporter, NULL == quarterBrightness->getInput(0));
143 REPORTER_ASSERT(reporter, NULL != halfBrightness->getInput(0));
150 REPORTER_ASSERT(reporter, true == gray->asColorFilter(NULL));
158 REPORTER_ASSERT(reporter, false == grayWithCrop->asColorFilter(NULL))
    [all...]
  /external/chromium_org/third_party/skia/tests/
LListTest.cpp 32 skiatest::Reporter* reporter,
38 REPORTER_ASSERT(reporter, empty == list.isEmpty());
41 REPORTER_ASSERT(reporter, numElements == list.countEntries());
42 REPORTER_ASSERT(reporter, in0 == list.isInList(&elements[0]));
43 REPORTER_ASSERT(reporter, in1 == list.isInList(&elements[1]));
44 REPORTER_ASSERT(reporter, in2 == list.isInList(&elements[2]));
45 REPORTER_ASSERT(reporter, in3 == list.isInList(&elements[3]));
49 static void TestTInternalLList(skiatest::Reporter* reporter) {
    [all...]
GpuColorFilterTest.cpp 35 static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrContext* grContext) {
106 REPORTER_ASSERT(reporter, filterColor(color, components) == test.outputColor);
107 REPORTER_ASSERT(reporter, test.outputComponents == components);
111 DEF_GPUTEST(GpuColorFilter, reporter, factory) {
120 test_getConstantColorComponents(reporter, grContext);
MetaDataTest.cpp 11 static void test_ptrs(skiatest::Reporter* reporter) {
13 REPORTER_ASSERT(reporter, 1 == ref.getRefCnt());
20 REPORTER_ASSERT(reporter, md0.findRefCnt(name));
21 REPORTER_ASSERT(reporter, md0.hasRefCnt(name, &ref));
22 REPORTER_ASSERT(reporter, 2 == ref.getRefCnt());
25 REPORTER_ASSERT(reporter, md1.findRefCnt(name));
26 REPORTER_ASSERT(reporter, md1.hasRefCnt(name, &ref));
27 REPORTER_ASSERT(reporter, 3 == ref.getRefCnt());
29 REPORTER_ASSERT(reporter, md0.removeRefCnt(name))
    [all...]
PathOpsQuadLineIntersectionTest.cpp 79 static void testOneOffs(skiatest::Reporter* reporter) {
97 REPORTER_ASSERT(reporter, quadXY.approximatelyEqual(lineXY));
102 DEF_TEST(PathOpsQuadLineIntersectionOneOff, reporter) {
103 testOneOffs(reporter);
106 DEF_TEST(PathOpsQuadLineIntersection, reporter) {
118 REPORTER_ASSERT(reporter, 0);
122 REPORTER_ASSERT(reporter, 0);
127 REPORTER_ASSERT(reporter, result == lineQuadTests[index].result);
133 REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1)
    [all...]
PathOpsQuadLineIntersectionThreadedTest.cpp 41 static void testLineIntersect(skiatest::Reporter* reporter, const SkDQuad& quad,
65 REPORTER_ASSERT(reporter, found);
113 DEF_TEST(PathOpsQuadLineIntersectionThreaded, reporter) {
114 initializeTests(reporter, "testQuadLineIntersect");
115 PathOpsThreadedTestRunner testRunner(reporter);
122 if (!reporter->allowExtendedTest()) goto finish;
PictureTest.cpp 477 static void test_gatherpixelrefs(skiatest::Reporter* reporter) {
499 REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
508 ERRORF(reporter, "SkPictureUtils::GatherPixelRefs returned "
514 REPORTER_ASSERT(reporter, 1 == count || 2 == count);
516 REPORTER_ASSERT(reporter, gatheredRefs[0] == refs[i]);
518 REPORTER_ASSERT(reporter,
551 ERRORF(reporter, "PixelRef missing %d %s",
566 ERRORF(reporter, "PixelRef missing %d %s",
587 static void test_analysis(skiatest::Reporter* reporter, bool useNewPath)
    [all...]
RecordReplaceDrawTest.cpp 84 void test_replacements(skiatest::Reporter* r, bool useBBH) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
html.py 9 from coverage.report import Reporter
29 class HtmlReporter(Reporter):
  /prebuilts/devtools/tools/lib/
lint.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.2.0/
lint-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.4.0/
lint-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.4.2/
lint-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.5.0/
lint-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.5.1/
lint-22.5.1.jar 

Completed in 4831 milliseconds

<<111213141516