Home
last modified time | relevance | path

Searched refs:bitmapIcon (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/
H A DCanUseIconPredicateTest.kt77 val bitmapIcon = Icon.createWithBitmap(Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888)) regex
79 assertThat(underTest.invoke(bitmapIcon)).isTrue()
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DCat.java332 public static Icon recompressIcon(Icon bitmapIcon) {
333 if (bitmapIcon.getType() != Icon.TYPE_BITMAP) return bitmapIcon;
335 … final Bitmap bits = (Bitmap) Icon.class.getDeclaredMethod("getBitmap").invoke(bitmapIcon);
342 return bitmapIcon;
/aosp14/frameworks/base/core/java/android/app/
H A DActivityManager.java2232 final Bitmap bitmapIcon = getInMemoryIcon(); in writeToParcel() local
2233 if (mIcon == null || (bitmapIcon != null && bitmapIcon.isRecycled())) { in writeToParcel()