Home
last modified time | relevance | path

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

/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/util/
H A DBitmapUtilTests.java79 assertBitmapSize(128, 64, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 1)); in testDecodeWithSampleSize1()
80 assertBitmapSize(128, 64, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 1)); in testDecodeWithSampleSize1()
84 assertBitmapSize(64, 32, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 2)); in testDecodeWithSampleSize2()
85 assertBitmapSize(64, 32, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 2)); in testDecodeWithSampleSize2()
89 assertBitmapSize(25, 20, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(50, 40), 2)); in testDecodeWithSampleSize2a()
90 assertBitmapSize(25, 20, BitmapUtil.decodeBitmapFromBytes(createPngRawData(50, 40), 2)); in testDecodeWithSampleSize2a()
94 assertBitmapSize(32, 16, BitmapUtil.decodeBitmapFromBytes(createJpegRawData(128, 64), 4)); in testDecodeWithSampleSize4()
95 assertBitmapSize(32, 16, BitmapUtil.decodeBitmapFromBytes(createPngRawData(128, 64), 4)); in testDecodeWithSampleSize4()
98 private void assertBitmapSize(int expectedWidth, int expectedHeight, Bitmap bitmap) { in assertBitmapSize() method in BitmapUtilTests
/aosp12/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()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DShortcutManagerTest1.java40 import static com.android.server.pm.shortcutmanagertest.ShortcutManagerTestUtils.assertBitmapSize;
916 assertBitmapSize(32, 32, bmp); in testIcons()
920 assertBitmapSize(64, 64, bmp); in testIcons()
924 assertBitmapSize(128, 128, bmp); in testIcons()
933 assertBitmapSize(128, 128, bmp); in testIcons()
947 assertBitmapSize(128, 128, bmp); in testIcons()
1144 assertBitmapSize(expectedWidth, expectedHeight, in checkShrinkBitmap()
/aosp12/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