Home | History | Annotate | Download | only in tests

Lines Matching defs:copy

300                         SkBitmap copy;
302 subset.copyTo(&copy, subset.config()));
303 REPORTER_ASSERT(reporter, copy.width() == 1);
304 REPORTER_ASSERT(reporter, copy.height() == 1);
305 REPORTER_ASSERT(reporter, copy.rowBytes() <= 4);
308 SkAutoLockPixels alp1(copy);
312 (copy.getColorTable() != NULL) == hasCT);
407 // Either copy src or extract into 'subset', which is used
411 // The extractedSubset() test case allows us to test copy-
459 // Then attempt to copy with a stride that is too large
488 // Copy with different stride between src and dst.
502 // Test copy with stride too small.
507 // Request copy with stride too small.
527 // Tests basic copy from an external buffer to the bitmap.