OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testBitmap
(Results
1 - 9
of
9
) sorted by null
/external/skia/tools/skpdiff/
SkImageDiffer.cpp
26
SkBitmap
testBitmap
;
31
if (!SkImageDecoder::DecodeFile(test, &
testBitmap
)) {
35
return this->queueDiff(&baselineBitmap, &
testBitmap
);
SkDiffContext.cpp
58
SkBitmap
testBitmap
;
63
if (!SkImageDecoder::DecodeFile(testPath, &
testBitmap
)) {
78
int diffID = differ->queueDiff(&baselineBitmap, &
testBitmap
);
/cts/tests/tests/effect/src/android/effect/cts/
EffectTest.java
119
Bitmap
testBitmap
= Bitmap.createBitmap(2, 2, Bitmap.Config.ARGB_8888);
120
testBitmap
.setPixel(0, 0, 0xFF000000);
121
testBitmap
.setPixel(0, 1, 0xFF0000FF);
122
testBitmap
.setPixel(1, 0, 0xFF00FF00);
123
testBitmap
.setPixel(1, 1, 0xFFFF0000);
124
return
testBitmap
;
/external/skia/tests/
BlurTest.cpp
131
SkBitmap
testBitmap
;
132
create(&
testBitmap
, itest, SkBitmap::kARGB_8888_Config);
134
SkCanvas testCanvas(
testBitmap
);
141
compare(refBitmap, iref,
testBitmap
, itest));
SurfaceTest.cpp
84
SkBitmap
testBitmap
;
85
testBitmap
.setConfig(SkBitmap::kARGB_8888_Config, 10, 10);
86
testBitmap
.allocPixels();
124
EXPECT_COPY_ON_WRITE(drawBitmap(
testBitmap
, 0, 0))
125
EXPECT_COPY_ON_WRITE(drawBitmapRect(
testBitmap
, NULL, testRect))
126
EXPECT_COPY_ON_WRITE(drawBitmapMatrix(
testBitmap
, testMatrix, NULL))
127
EXPECT_COPY_ON_WRITE(drawBitmapNine(
testBitmap
, testIRect, testRect, NULL))
128
EXPECT_COPY_ON_WRITE(drawSprite(
testBitmap
, 0, 0, NULL))
CanvasTest.cpp
226
static SkBitmap
testBitmap
() {
[
all
...]
/cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java
254
// Compress rect1 in
testBitmap
and rect2 in image.
256
private void compressRects(Bitmap
testBitmap
, YuvImage image,
266
expected = Bitmap.createBitmap(
testBitmap
, expectedRect.left, expectedRect.top, expectedRect.width(), expectedRect.height());
272
// We use the modified one to get pixels from
testBitmap
.
273
private void compressOddRect(Bitmap
testBitmap
, YuvImage image,
280
expected = Bitmap.createBitmap(
testBitmap
, newRect.left, newRect.top,
/cts/tests/tests/widget/src/android/widget/cts/
SimpleAdapterTest.java
328
Bitmap
testBitmap
= WidgetTestUtils.getUnscaledAndDitheredBitmap(mContext.getResources(),
330
WidgetTestUtils.assertEquals(
testBitmap
, actualBitmap);
SimpleCursorAdapterTest.java
214
Bitmap
testBitmap
= WidgetTestUtils.getUnscaledAndDitheredBitmap(mContext.getResources(),
216
WidgetTestUtils.assertEquals(
testBitmap
, actualBitmap);
Completed in 315 milliseconds