Searched refs:bitmap (Results 226 - 250 of 289) sorted by relevance

1234567891011>>

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DMailActivity.java39 import com.android.bitmap.BitmapCache;
40 import com.android.bitmap.UnrefedBitmapCache;
44 import com.android.mail.bitmap.ContactResolver;
H A DFolderSelectionActivity.java35 import com.android.bitmap.BitmapCache;
37 import com.android.mail.bitmap.ContactResolver;
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelecomAccountRegistry.java184 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
185 Canvas canvas = new Canvas(bitmap);
189 icon = Icon.createWithBitmap(bitmap);
/packages/apps/Camera2/jni/
H A Dtinyplanet.cc19 #include <android/bitmap.h>
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DCheckableContactFlipDrawable.java16 package com.android.mail.bitmap;
H A DFlipDrawable.java16 package com.android.mail.bitmap;
/packages/apps/Camera2/src/com/android/camera/
H A DPhotoUI.java183 protected void onPostExecute(Bitmap bitmap) { argument
188 mIntentReviewImageView.setImageBitmap(bitmap);
H A DVideoModule.java1434 Bitmap bitmap = null;
1436 bitmap = Thumbnail.createVideoThumbnailBitmap(mVideoFileDescriptor.getFileDescriptor(),
1441 bitmap = Thumbnail.createVideoThumbnailBitmap(
1449 if (bitmap != null) {
1452 bitmap = CameraUtil.rotateAndMirror(bitmap, 0, isCameraFrontFacing());
1454 return bitmap;
1459 Bitmap bitmap = getVideoThumbnail();
1460 if (bitmap != null) {
1461 mUI.showReviewImage(bitmap);
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DSuggestedMemberListAdapter.java150 Bitmap bitmap = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
151 icon.setImageBitmap(bitmap);
/packages/apps/Email/provider_src/com/android/email/provider/
H A DAttachmentProvider.java320 Bitmap bitmap = BitmapFactory.decodeStream(data);
321 return bitmap;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorDraw.java275 Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(), brushIcons[index]);
276 caller.available(bitmap);
H A DEditorDrawTabletUI.java136 Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), mBrushIcons[i]);
137 button.setImageBitmap(bitmap);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DProcessingService.java257 public void updateNotificationWithBitmap(Bitmap bitmap) { argument
258 mBuilder.setLargeIcon(bitmap);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DWallpaperChooserDialogFragment.java316 * Custom drawable that centers the bitmap fed to it.
325 /* package */void setBitmap(Bitmap bitmap) { argument
326 mBitmap = bitmap;
H A DWidgetPreviewLoader.java248 throw new RuntimeException("generatePreview is not recycling the bitmap " + o);
447 throw new RuntimeException("Improperly sized bitmap passed as argument");
553 // If a bitmap is passed in, we use it; otherwise, we create a bitmap of the right size
558 // Draw the scaled preview into the final bitmap
609 // Reture the nadged bitmap.
650 throw new RuntimeException("Improperly sized bitmap passed as argument");
676 Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
677 renderDrawableToBitmap(d, bitmap, x, y, w, h, 1f);
681 Drawable d, Bitmap bitmap, in
675 renderDrawableToBitmap( Drawable d, Bitmap bitmap, int x, int y, int w, int h) argument
680 renderDrawableToBitmap( Drawable d, Bitmap bitmap, int x, int y, int w, int h, float scale) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDragView.java75 * @param bitmap The view that we're dragging around. We scale it up when we draw it.
80 public DragView(Launcher launcher, Bitmap bitmap, int registrationX, int registrationY, argument
122 mBitmap = Bitmap.createBitmap(bitmap, left, top, width, height);
125 // The point in our scaled bitmap that the touch events are located
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoDataAdapter.java705 // If this is a temporary item, don't try to get its bitmap because
706 // it won't be available. We will get its bitmap after a data reload.
711 Bitmap bitmap = mItem.requestImage(MediaItem.TYPE_THUMBNAIL).run(jc);
713 if (bitmap != null) {
714 bitmap = BitmapUtils.rotateBitmap(bitmap,
717 return bitmap == null ? null : new TiledScreenNail(bitmap);
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java312 // Set the thumbnail bitmap here because mThumbnailView must be accessed
626 Bitmap bitmap = null;
627 bitmap = BitmapFactory.decodeByteArray(jpeg.data, 0, jpeg.data.length);
629 MSG_LOW_RES_FINAL_MOSAIC_READY, bitmap));
939 private void showFinalMosaic(Bitmap bitmap) { argument
940 if (bitmap != null) {
941 mReview.setImageBitmap(bitmap);
/packages/providers/TvProvider/src/com/android/providers/tv/
H A DTvProvider.java1025 Bitmap bitmap = BitmapFactory.decodeStream(is);
1026 if (bitmap == null) {
1032 Math.max(bitmap.getWidth(), bitmap.getHeight()));
1034 bitmap = Bitmap.createScaledBitmap(bitmap,
1035 (int) (bitmap.getWidth() * scaleFactor),
1036 (int) (bitmap.getHeight() * scaleFactor), false);
1040 bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos);
/packages/apps/InCallUI/src/com/android/incallui/
H A DStatusBarNotifier.java387 private Bitmap getRoundedIcon(Bitmap bitmap) { argument
388 if (bitmap == null) {
395 return BitmapUtil.getRoundedBitmap(bitmap, width, height);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
H A DDialogActionAdapter.java234 public void onBitmapRetrieved(Drawable bitmap) {
235 if (bitmap != null) {
237 indicatorView.setImageDrawable(bitmap);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DActionAdapter.java329 public void onBitmapRetrieved(Bitmap bitmap) {
330 if (bitmap != null) {
332 indicatorView.setImageBitmap(bitmap);
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java1087 Bitmap bitmap = null;
1088 // Try finding the corresponding bitmap in the dark bitmap cache
1089 bitmap = sDarkDefaultUserBitmapCache.get(userId);
1090 if (bitmap == null) {
1091 bitmap = UserIcons.convertToBitmap(UserIcons.getDefaultUserIcon(userId, false));
1093 sDarkDefaultUserBitmapCache.put(userId, bitmap);
1095 return bitmap;
/packages/apps/Camera2/src/com/android/camera/session/
H A DCaptureSessionImpl.java176 public void updateThumbnail(Bitmap bitmap) { argument
185 mPlaceholderManager.replacePlaceholder(mPlaceHolder, bitmap);
/packages/apps/Music/src/com/android/music/
H A DTouchInterceptor.java135 Bitmap bitmap = Bitmap.createBitmap(item.getDrawingCache());
136 startDragging(bitmap, x, y);

Completed in 1659 milliseconds

1234567891011>>