Searched refs:getBitmap (Results 1 - 25 of 55) sorted by relevance

123

/packages/apps/Gallery/tests/src/com/android/camera/
H A DBitmapManagerUnitTests.java46 public Bitmap getBitmap() { method in class:BitmapManagerUnitTests.DecodeThread
93 assertNotNull(t.getBitmap());
105 assertNull(t.getBitmap());
118 assertNotNull(t.getBitmap());
136 assertNotNull(t1.getBitmap());
138 assertNull(t2.getBitmap());
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DBitmapTexture.java51 public Bitmap getBitmap() { method in class:BitmapTexture
H A DUploadedTexture.java134 private Bitmap getBitmap() { method in class:UploadedTexture
154 if (mWidth == UNSPECIFIED) getBitmap();
160 if (mWidth == UNSPECIFIED) getBitmap();
193 Bitmap bitmap = getBitmap();
212 Bitmap bitmap = getBitmap();
/packages/apps/Gallery/src/com/android/camera/
H A DImageViewTouchBase.java87 if (mBitmapDisplayed.getBitmap() != null) {
131 Bitmap old = mBitmapDisplayed.getBitmap();
166 if (bitmap.getBitmap() != null) {
168 setImageBitmap(bitmap.getBitmap(), bitmap.getRotation());
187 if (mBitmapDisplayed.getBitmap() == null) {
194 mBitmapDisplayed.getBitmap().getWidth(),
195 mBitmapDisplayed.getBitmap().getHeight());
297 if (mBitmapDisplayed.getBitmap() == null) {
367 if (mBitmapDisplayed.getBitmap() == null) {
379 if (mBitmapDisplayed.getBitmap()
[all...]
H A DRotateBitmap.java45 public Bitmap getBitmap() { method in class:RotateBitmap
H A DImageLoader.java48 public void getBitmap(IImage image, method in class:ImageLoader
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DBaseAdapterWithImages.java137 if (drawable != null && drawable.getBitmap() != null) {
139 drawable.getBitmap().recycle();
158 if (drawable != null && drawable.getBitmap() != null) {
159 drawable.getBitmap().recycle();
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DPhotoProcessorTest.java40 final Bitmap sourceBitmap = ((BitmapDrawable) source).getBitmap();
/packages/apps/Mms/tests/src/com/android/mms/util/
H A DSmileyParserUnitTests.java69 Bitmap bitmap1 = bitmapDrawable1.getBitmap();
70 Bitmap bitmap2 = bitmapDrawable2.getBitmap();
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksAdapter.java111 Bitmap thumbnail = item.thumbnail != null ? item.thumbnail.getBitmap() : null;
112 thumbnail = BrowserBookmarksPage.getBitmap(c,
116 && (item.thumbnail == null || item.thumbnail.getBitmap() != thumbnail)) {
H A DBrowserBookmarksPage.java205 getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_FAVICON),
206 getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_THUMBNAIL));
233 static Bitmap getBitmap(Cursor cursor, int columnIndex) { method in class:BrowserBookmarksPage
234 return getBitmap(cursor, columnIndex, null);
243 static Bitmap getBitmap(Cursor cursor, int columnIndex, Bitmap inBitmap) { method in class:BrowserBookmarksPage
319 Bitmap bitmap = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_FAVICON);
456 Bitmap touchIcon = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_TOUCH_ICON);
457 Bitmap favicon = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_FAVICON);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBitmapLoader.java102 public synchronized Bitmap getBitmap() { method in class:BitmapLoader
H A DSlideshowView.java57 mPrevTexture.getBitmap().recycle();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFastBitmapDrawable.java106 public Bitmap getBitmap() { method in class:FastBitmapDrawable
H A DPagedViewWidget.java99 mInfo != null && preview != null && preview.getBitmap() != null) {
100 mWidgetPreviewLoader.recycleBitmap(mInfo, preview.getBitmap());
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DMasterImage.java397 if (request.getBitmap() == null) {
401 mGeometryOnlyBitmap = request.getBitmap();
404 mFiltersOnlyBitmap = request.getBitmap();
408 mPartialBitmap = request.getBitmap();
412 mHighresBitmap = request.getBitmap();
419 preset.setPreviewImage(request.getBitmap());
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
H A DNotificationShowcaseActivity.java135 private static Bitmap getBitmap(Context context, int resId) { method in class:NotificationShowcaseActivity
219 .setLargeIcon(getBitmap(context, R.drawable.bucket))
273 .setLargeIcon(getBitmap(this, R.drawable.matias_hed))
318 .setLargeIcon(getBitmap(this, R.drawable.romainguy_hed))
323 .bigPicture(d.getBitmap())
/packages/apps/Contacts/src/com/android/contacts/util/
H A DImageViewDrawableSetter.java127 : ((BitmapDrawable) mPreviousDrawable).getBitmap();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DStyleChooser.java60 Bitmap bmap = request.getBitmap();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
H A DFilterEnvironment.java59 public Bitmap getBitmap(int w, int h) { method in class:FilterEnvironment
/packages/apps/Phone/src/com/android/phone/
H A DAnimationUtils.java216 && ((BitmapDrawable) from).getBitmap()
217 .equals(((BitmapDrawable) to).getBitmap()));
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DCallLogFragmentTest.java384 private Bitmap getBitmap(String resName) { method in class:CallLogFragmentTest
389 return d.getBitmap();
398 mCallTypeIcons.put(Calls.INCOMING_TYPE, getBitmap("ic_call_incoming_holo_dark"));
399 mCallTypeIcons.put(Calls.MISSED_TYPE, getBitmap("ic_call_missed_holo_dark"));
400 mCallTypeIcons.put(Calls.OUTGOING_TYPE, getBitmap("ic_call_outgoing_holo_dark"));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
H A DRenderingRequest.java111 public Bitmap getBitmap() { method in class:RenderingRequest
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterTinyPlanet.java95 mBitmapOut = getEnvironment().getBitmap(outputSize, outputSize);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DIconButton.java55 mImageMirror = ic.getBitmap();

Completed in 4092 milliseconds

123