Searched refs:bitmapIcon (Results 1 – 3 of 3) sorted by relevance
77 val bitmapIcon = Icon.createWithBitmap(Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888)) regex79 assertThat(underTest.invoke(bitmapIcon)).isTrue()
332 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;
2232 final Bitmap bitmapIcon = getInMemoryIcon(); in writeToParcel() local2233 if (mIcon == null || (bitmapIcon != null && bitmapIcon.isRecycled())) { in writeToParcel()