Searched refs:createBitmap (Results 51 - 70 of 70) sorted by path

123

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java486 return Bitmap.createBitmap(bd.getBitmap());
H A DNotificationTestList.java943 return Bitmap.createBitmap(bd.getBitmap());
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java115 bm = Bitmap_Delegate.createBitmap(ninePatch.getImage(), true /*isMutable*/,
130 bm = Bitmap_Delegate.createBitmap(is, true, density);
H A DBitmap_Delegate.java93 public static Bitmap createBitmap(File input, boolean isMutable, Density density) method in class:Bitmap_Delegate
98 return createBitmap(delegate, isMutable, density.getDpiValue());
111 public static Bitmap createBitmap(InputStream input, boolean isMutable, Density density) method in class:Bitmap_Delegate
116 return createBitmap(delegate, isMutable, density.getDpiValue());
129 public static Bitmap createBitmap(BufferedImage image, boolean isMutable, method in class:Bitmap_Delegate
134 return createBitmap(delegate, isMutable, density.getDpiValue());
214 return createBitmap(delegate, mutable, Bitmap.getDefaultDensity());
242 return createBitmap(delegate, isMutable, Bitmap.getDefaultDensity());
451 return createBitmap(delegate, false /*isMutable*/,
522 private static Bitmap createBitmap(Bitmap_Delegat method in class:Bitmap_Delegate
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java129 bitmap = Bitmap_Delegate.createBitmap(stream, false /*isMutable*/, density);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderDrawable.java103 Bitmap bitmap = Bitmap_Delegate.createBitmap(image,
H A DRenderSessionImpl.java550 Bitmap bitmap = Bitmap_Delegate.createBitmap(mImage,
H A DResourceHelper.java233 bitmap = Bitmap_Delegate.createBitmap(bmpFile, false /*isMutable*/,
284 bitmap = Bitmap_Delegate.createBitmap(ninePatch.getImage(),
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java59 private Bitmap mDefaultLineBitmap = Bitmap.createBitmap(
91 private Bitmap mDetailLoadingBitmap = Bitmap.createBitmap(
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DCarouselTestActivity.java85 Bitmap bitmap = Bitmap.createBitmap(TEXTURE_WIDTH, TEXTURE_HEIGHT,
103 Bitmap bitmap = Bitmap.createBitmap(DETAIL_TEXTURE_WIDTH, DETAIL_TEXTURE_HEIGHT,
H A DTaskSwitcherActivity.java64 private Bitmap mBlankBitmap = Bitmap.createBitmap(128, 128, Config.RGB_565);
154 bitmap = Bitmap.createBitmap(DETAIL_TEXTURE_WIDTH, DETAIL_TEXTURE_HEIGHT,
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java545 Bitmap tmpBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
587 Bitmap tmpBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
1773 Bitmap drawable = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
/frameworks/ex/chips/tests/src/com/android/ex/chips/
H A DChipsTest.java911 Bitmap drawable = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java162 return Bitmap.createBitmap(originalBitmap, 0, 0, originalBitmap.getWidth(),
/frameworks/ex/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java491 final Bitmap croppedBitmap = Bitmap.createBitmap(
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java178 return Bitmap.createBitmap(originalBitmap, 0, 0, originalBitmap.getWidth(),
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java489 final Bitmap croppedBitmap = Bitmap.createBitmap(
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccUtils.java414 return Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
457 return Bitmap.createBitmap(resultArray, width, height,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DIconLoader.java259 return Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
321 return Bitmap.createBitmap(pixels, width, height,
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiDevice.java845 Bitmap ss = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

Completed in 332 milliseconds

123