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

12

/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/ui/
H A DBitmapTexture.java51 public Bitmap getBitmap() { method in class:BitmapTexture
H A DUploadedTexture.java135 private Bitmap getBitmap() { method in class:UploadedTexture
155 if (mWidth == UNSPECIFIED) getBitmap();
161 if (mWidth == UNSPECIFIED) getBitmap();
194 Bitmap bitmap = getBitmap();
219 Bitmap bitmap = getBitmap();
H A DBitmapLoader.java101 public synchronized Bitmap getBitmap() { method in class:BitmapLoader
H A DBitmapTileProvider.java80 Bitmap result = pool == null ? null : pool.getBitmap();
H A DSlideshowView.java57 mPrevTexture.getBitmap().recycle();
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBitmapPool.java55 public synchronized Bitmap getBitmap() { method in class:BitmapPool
62 public synchronized Bitmap getBitmap(int width, int height) { method in class:BitmapPool
H A DDecodeUtils.java310 if (pool.isOneSize()) return pool.getBitmap();
312 return pool.getBitmap(options.outWidth, options.outHeight);
317 if (pool.isOneSize()) return pool.getBitmap();
319 return pool.getBitmap(options.outWidth, options.outHeight);
/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);
H A DBookmarkUtils.java144 return bd.getBitmap();
153 return bd.getBitmap();
H A DBrowserSnapshotPage.java172 item.setFavicon(getBitmap(cursor, SNAPSHOT_FAVICON));
175 static Bitmap getBitmap(Cursor cursor, int columnIndex) { method in class:BrowserSnapshotPage
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFastBitmapDrawable.java105 public Bitmap getBitmap() { method in class:FastBitmapDrawable
H A DPagedViewWidget.java91 if (preview != null && preview.getBitmap() != null) {
92 preview.getBitmap().recycle();
/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/Phone/src/com/android/phone/
H A DAnimationUtils.java216 && ((BitmapDrawable) from).getBitmap()
217 .equals(((BitmapDrawable) to).getBitmap()));
/packages/apps/Contacts/tests/src/com/android/contacts/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/Contacts/src/com/android/contacts/list/
H A DShortcutIntentBuilder.java248 R.drawable.ic_contact_picture_holo_light, mIconDensity)).getBitmap();
363 .getBitmap();

Completed in 515 milliseconds

12