| /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
| TiledImageRenderer.java | 20 import android.graphics.Bitmap; 57 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded) 70 private static Pool<Bitmap> sTilePool = new SynchronizedPool<Bitmap>(64); 79 // The mLevel variable indicates which level of bitmap we should use. 80 // Level 0 means the original full-sized bitmap, and a larger value means 81 // a smaller scaled bitmap (The width and height of each scaled bitmap is 83 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value 104 // The width and height of the full-sized bitmap 707 Bitmap bitmap = mDecodedTile; local [all...] |
| /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
| RenderSessionImpl.java | 57 import android.graphics.Bitmap; 413 * @param freshRender whether the render is a new one and should erase the existing bitmap (in 447 * @param freshRender whether the render is a new one and should erase the existing bitmap (in 511 // create an Android bitmap around the BufferedImage 512 Bitmap bitmap = Bitmap_Delegate.createBitmap(mImage, local 516 // create a Canvas around the Android bitmap 517 mCanvas = new Canvas(bitmap); 519 mCanvas.setBitmap(bitmap); [all...] |
| /frameworks/support/exifinterface/src/androidTest/java/androidx/exifinterface/media/ |
| ExifInterfaceTest.java | 27 import android.graphics.Bitmap; 657 Bitmap bitmap = exifInterface.getThumbnailBitmap(); local 658 if (bitmap == null) { 661 Log.v(TAG, fileName + " Thumbnail size: " + bitmap.getWidth() + ", " 662 + bitmap.getHeight()); [all...] |
| /frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/ |
| VideoView2ImplBaseWithMp1.java | 24 import android.graphics.Bitmap; 1121 Bitmap bitmap = BitmapFactory.decodeByteArray(album, 0, album.length); local [all...] |
| /packages/apps/Dialer/java/com/android/dialer/contactphoto/ |
| ContactPhotoManagerImpl.java | 26 import android.graphics.Bitmap; 95 * Dummy object used to indicate that a bitmap for a given key could not be stored in the cache. 107 BITMAP_UNAVAILABLE.bitmapRef = new SoftReference<Bitmap>(null); 112 * An LRU cache for bitmap holders. The cache contains bytes for photos just as they come from the 113 * database. Each holder has a soft reference to the actual bitmap. 123 private final LruCache<Object, Bitmap> bitmapCache; 157 new LruCache<Object, Bitmap>(bitmapCacheSize) { 159 protected int sizeOf(Object key, Bitmap value) { 165 boolean evicted, Object key, Bitmap oldValue, Bitmap newValue) 247 Bitmap bitmap = BitmapUtil.decodeBitmapFromBytes(bytes, sampleSize); local 792 Bitmap bitmap; field in class:ContactPhotoManagerImpl.BitmapHolder [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/app/ |
| PhotoDataAdapter.java | 19 import android.graphics.Bitmap; 552 public Bitmap getTile(int level, int x, int y, int tileSize) { 701 // a Bitmap and then wrap it in a BitmapScreenNail instead. 705 // 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); local 713 if (bitmap != null) { 714 bitmap = BitmapUtils.rotateBitmap(bitmap, [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
| TileImageView.java | 20 import android.graphics.Bitmap; 63 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded) 80 // The mLevel variable indicates which level of bitmap we should use. 81 // Level 0 means the original full-sized bitmap, and a larger value means 82 // a smaller scaled bitmap (The width and height of each scaled bitmap is 84 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value 106 // The width and height of the full-sized bitmap 142 public Bitmap getTile(int level, int x, int y, int tileSize); 295 // If the bitmap is scaled by the given factor "scale", return th 693 Bitmap bitmap = mDecodedTile; local [all...] |
| /packages/apps/Gallery2/src/com/android/photos/views/ |
| TiledImageRenderer.java | 20 import android.graphics.Bitmap; 57 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded) 70 private static Pool<Bitmap> sTilePool = new SynchronizedPool<Bitmap>(64); 79 // The mLevel variable indicates which level of bitmap we should use. 80 // Level 0 means the original full-sized bitmap, and a larger value means 81 // a smaller scaled bitmap (The width and height of each scaled bitmap is 83 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value 104 // The width and height of the full-sized bitmap 707 Bitmap bitmap = mDecodedTile; local [all...] |
| /packages/apps/Nfc/src/com/android/nfc/beam/ |
| SendUi.java | 35 import android.graphics.Bitmap; 186 Bitmap mScreenshotBitmap; 468 // did store the bitmap. Clear out the bitmap, reset 563 final class ScreenshotTask extends AsyncTask<Void, Void, Bitmap> { 565 protected Bitmap doInBackground(Void... params) { 570 protected void onPostExecute(Bitmap result) { 600 Bitmap createScreenshot() { 644 // Take the screenshot. SurfaceControl will generate a hardware bitmap in the correct 646 Bitmap bitmap = SurfaceControl.screenshot(crop, width, height, rot) local [all...] |
| /packages/apps/Settings/src/com/android/settings/ |
| Utils.java | 47 import android.graphics.Bitmap; 943 final Bitmap bitmap; local [all...] |
| /packages/apps/Settings/src/com/android/settings/users/ |
| UserSettings.java | 32 import android.graphics.Bitmap; 146 private SparseArray<Bitmap> mUserIcons = new SparseArray<>(); 147 private static SparseArray<Bitmap> sDarkDefaultUserBitmapCache = new SparseArray<>(); 368 Bitmap b = mUserManager.getUserIcon(myUserId); 955 Bitmap bitmap = mUserManager.getUserIcon(userId); local 975 Bitmap bitmap = mUserIcons.get(user.id); local 1078 Bitmap bitmap = null; local 1103 Bitmap bitmap = getDefaultUserIconAsBitmap(context.getResources(), userId); local [all...] |
| /packages/apps/WallpaperPicker/src/com/android/photos/views/ |
| TiledImageRenderer.java | 20 import android.graphics.Bitmap; 57 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded) 70 private static Pool<Bitmap> sTilePool = new SynchronizedPool<Bitmap>(64); 79 // The mLevel variable indicates which level of bitmap we should use. 80 // Level 0 means the original full-sized bitmap, and a larger value means 81 // a smaller scaled bitmap (The width and height of each scaled bitmap is 83 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value 104 // The width and height of the full-sized bitmap 707 Bitmap bitmap = mDecodedTile; local [all...] |
| /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
| PhotoTable.java | 20 import android.graphics.Bitmap; 460 /** Put a nice border on the bitmap. */ 462 Bitmap decodedPhoto) { 506 final Bitmap current = getBitmap(mParent); 507 Bitmap decodedPhoto; 970 BitmapDrawable bitmap = (BitmapDrawable) layers.getDrawable(0); local [all...] |
| /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
| freetype.h | 331 /* This structure models the metrics of a bitmap strike (i.e., a set */ 332 /* of glyphs for a given point size and resolution) in a bitmap font. */ 360 /* bitmap strike itself. They are computed from the global font */ 451 /* module in charge of converting a glyph image to a bitmap, when */ 1741 FT_Bitmap bitmap; member in struct:FT_GlyphSlotRec_ [all...] |
| /frameworks/base/services/core/java/com/android/server/wm/ |
| DisplayContent.java | 123 import android.graphics.Bitmap; 3063 final Bitmap bitmap = SurfaceControl.screenshot(frame, dw, dh, 0, 1, inRotation, rot); local [all...] |
| /packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
| QuickContactActivity.java | 41 import android.graphics.Bitmap; 2215 final Bitmap bitmap = BitmapFactory.decodeByteArray( local [all...] |
| /bionic/libc/kernel/uapi/linux/ |
| xfrm.h | 78 __u32 bitmap; member in struct:xfrm_replay_state
|
| /cts/tests/tests/content/src/android/content/cts/ |
| ContextWrapperTest.java | 36 import android.graphics.Bitmap; 268 // set Wallpaper by contextWrapper#setWallpaper(Bitmap) 269 Bitmap bitmap = Bitmap.createBitmap(20, 30, Bitmap.Config.RGB_565); local 275 mContextWrapper.setWallpaper(bitmap); [all...] |
| /cts/tests/tests/graphics/src/android/graphics/cts/ |
| CanvasTest.java | 26 import android.graphics.Bitmap; 27 import android.graphics.Bitmap.Config; 84 private Bitmap mImmutableBitmap; 85 private Bitmap mMutableBitmap; 94 opt.inScaled = false; // bitmap will only be immutable if not scaled during load 97 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888); 105 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888); 131 // Should throw out RuntimeException when setting Bitmap which is recycled to a Canvas 138 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, 31, Config.ARGB_8888); 152 Bitmap normal = Bitmap.createBitmap(10, 10, Config.ARGB_8888) 1753 Bitmap bitmap = BitmapFactory.decodeStream(in); local 1769 Bitmap bitmap = Bitmap.createBitmap(100, 100, Config.ARGB_8888); local [all...] |
| /external/iproute2/include/uapi/linux/ |
| xfrm.h | 87 __u32 bitmap; member in struct:xfrm_replay_state
|
| /external/kernel-headers/original/uapi/linux/ |
| xfrm.h | 87 __u32 bitmap; member in struct:xfrm_replay_state
|
| /external/pdfium/core/fxge/skia/ |
| fx_skia_device.cpp | 266 static void DebugValidate(const RetainPtr<CFX_DIBitmap>& bitmap, 268 if (bitmap) { 269 SkASSERT(bitmap->GetBPP() == 8 || bitmap->GetBPP() == 32); 270 if (bitmap->GetBPP() == 32) { 271 bitmap->DebugVerifyBitmapIsPreMultiplied(nullptr); 1784 SkBitmap bitmap; local [all...] |
| /external/pdfium/core/fxge/win32/ |
| fx_win32_gdipext.cpp | 301 GpBitmap** bitmap); 304 GpBitmap** bitmap); 313 GpBitmap* bitmap, 325 GpBitmap* bitmap, 340 GpBitmap** bitmap); 355 GpBitmap** bitmap); 636 GpBitmap* bitmap; local 640 pStretched->GetBuffer(), &bitmap); 652 CallFunc(GdipSetImagePalette)(bitmap, (Gdiplus::ColorPalette*)pal); 653 CallFunc(GdipDrawImageI)(pGraphics, bitmap, 659 GpBitmap* bitmap; local 693 GpBitmap* bitmap = nullptr; local [all...] |
| /external/skia/src/pdf/ |
| SkPDFDevice.cpp | 319 // face of floating-point accuracy and possible SkRegion bitmap 1695 SkBitmap bitmap; local [all...] |
| /external/skqp/src/pdf/ |
| SkPDFDevice.cpp | 319 // face of floating-point accuracy and possible SkRegion bitmap 1695 SkBitmap bitmap; local [all...] |