Home
last modified time | relevance | path

Searched refs:assertBitmapSize (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/packages/apps/Contacts/tests/src/com/android/contacts/util/
DBitmapUtilTests.java80 assertBitmapSize(128, 64, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 1)); in testDecodeWithSampleSize1()
81 assertBitmapSize(128, 64, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 1)); in testDecodeWithSampleSize1()
85 assertBitmapSize(64, 32, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 2)); in testDecodeWithSampleSize2()
86 assertBitmapSize(64, 32, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 2)); in testDecodeWithSampleSize2()
90 assertBitmapSize(25, 20, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(50, 40), 2)); in testDecodeWithSampleSize2a()
91 assertBitmapSize(25, 20, BitmapUtil.decodeBitmapFromBytes(createPngRawData(50, 40), 2)); in testDecodeWithSampleSize2a()
95 assertBitmapSize(32, 16, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 4)); in testDecodeWithSampleSize4()
96 assertBitmapSize(32, 16, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 4)); in testDecodeWithSampleSize4()
99 private void assertBitmapSize(int expectedWidth, int expectedHeight, Bitmap bitmap) { in assertBitmapSize() method in BitmapUtilTests
/aosp_15_r20/frameworks/base/media/tests/MtpTests/src/android/mtp/
H A DMtpDatabaseTest.java168 private void assertBitmapSize(int expectedWidth, int expectedHeight, Bitmap bitmap) { in assertBitmapSize() method in MtpDatabaseTest
224 assertBitmapSize(32, 16, testBitmap); in testThumbnail()
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DShortcutManagerTest1.java39 import static com.android.server.pm.shortcutmanagertest.ShortcutManagerTestUtils.assertBitmapSize;
972 assertBitmapSize(32, 32, bmp); in testIcons()
976 assertBitmapSize(64, 64, bmp); in testIcons()
980 assertBitmapSize(128, 128, bmp); in testIcons()
989 assertBitmapSize(128, 128, bmp); in testIcons()
1003 assertBitmapSize(128, 128, bmp); in testIcons()
1200 assertBitmapSize(expectedWidth, expectedHeight, in checkShrinkBitmap()
/aosp_15_r20/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java661 public static void assertBitmapSize(int expectedWidth, int expectedHeight, Bitmap bitmap) { in assertBitmapSize() method in ShortcutManagerTestUtils