HomeSort by relevance Sort by last modified time
    Searched defs:bitmap (Results 926 - 950 of 1117) sorted by null

<<31323334353637383940>>

  /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/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 76 import android.graphics.Bitmap;
449 * @param freshRender whether the render is a new one and should erase the existing bitmap (in
577 // create an Android bitmap around the BufferedImage
578 Bitmap bitmap = Bitmap_Delegate.createBitmap(mImage, local
581 // create a Canvas around the Android bitmap
582 mCanvas = new Canvas(bitmap);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java 27 import android.graphics.Bitmap;
258 // The Bitmap that contains the drag shadow.
259 private Bitmap mDragBitmap;
617 * Initiate the dragging process. Create a bitmap that is displayed as the dragging event
653 // and only draw the bitmap in onDrop for animation.
671 private Bitmap createDraggedChildBitmap(View view) {
673 final Bitmap cache = view.getDrawingCache();
675 Bitmap bitmap = null; local
678 bitmap = cache.copy(Bitmap.Config.ARGB_8888, false)
    [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;
64 * DECODED --> ACTIVATED - (after the decoded bitmap is uploaded)
81 // The mLevel variable indicates which level of bitmap we should use.
82 // Level 0 means the original full-sized bitmap, and a larger value means
83 // a smaller scaled bitmap (The width and height of each scaled bitmap is
85 // use the bitmap in mScaledBitmaps[mLevel] for display, otherwise the value
107 // The width and height of the full-sized bitmap
143 public Bitmap getTile(int level, int x, int y, int tileSize);
296 // If the bitmap is scaled by the given factor "scale", return th
694 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/Launcher3/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/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 16 import android.graphics.Bitmap;
17 import android.graphics.Bitmap.Config;
93 private static class BitmapCache extends SoftReferenceThreadLocal<Bitmap> {
95 protected Bitmap initialValue() {
134 private final HashMap<String, WeakReference<Bitmap>> mLoadedPreviews = new HashMap<String, WeakReference<Bitmap>>();
135 private final ArrayList<SoftReference<Bitmap>> mUnusedBitmaps = new ArrayList<SoftReference<Bitmap>>();
204 public Bitmap getPreview(final Object o) {
217 WeakReference<Bitmap> bitmapReference = mLoadedPreviews.get(name)
218 Bitmap bitmap = bitmapReference.get(); local
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
SendUi.java 33 import android.graphics.Bitmap;
178 Bitmap mScreenshotBitmap;
457 // did store the bitmap. Clear out the bitmap, reset
549 final class ScreenshotTask extends AsyncTask<Void, Void, Bitmap> {
551 protected Bitmap doInBackground(Void... params) {
556 protected void onPostExecute(Bitmap result) {
585 Bitmap createScreenshot() {
616 Bitmap bitmap = SurfaceControl.screenshot((int) dims[0], (int) dims[1]) local
    [all...]
  /packages/apps/Settings/src/com/android/settings/users/
UserSettings.java 35 import android.graphics.Bitmap;
137 private SparseArray<Bitmap> mUserIcons = new SparseArray<Bitmap>();
339 Bitmap b = mUserManager.getUserIcon(myUserId);
833 Bitmap bitmap = mUserManager.getUserIcon(userId); local
852 Bitmap bitmap = UserIcons.convertToBitmap(UserIcons.getDefaultUserIcon(user.id, local
866 Bitmap bitmap = mUserIcons.get(user.id); 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/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
xfrm.h 90 __u32 bitmap; member in struct:xfrm_replay_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
xfrm.h 90 __u32 bitmap; member in struct:xfrm_replay_state
  /bionic/libc/kernel/uapi/linux/
xfrm.h 90 __u32 bitmap; member in struct:xfrm_replay_state
  /cts/tests/tests/content/src/android/content/cts/
ContextWrapperTest.java 38 import android.graphics.Bitmap;
284 // set Wallpaper by contextWrapper#setWallpaper(Bitmap)
285 Bitmap bitmap = Bitmap.createBitmap(20, 30, Bitmap.Config.RGB_565); local
291 mContextWrapper.setWallpaper(bitmap);
    [all...]
  /development/ndk/platforms/android-L/include/linux/
xfrm.h 90 __u32 bitmap; member in struct:xfrm_replay_state
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 741 if (!sad_plugin_) // Lazily initialize bitmap.
2805 const SkBitmap* bitmap = image_data->GetMappedBitmap(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c 341 struct bitmap_state Bitmap; /**< For _mesa_meta_Bitmap() */
2625 struct bitmap_state *bitmap = &ctx->Meta->Bitmap; local
    [all...]
  /external/chromium_org/third_party/skia/gm/
gmmain.cpp 195 static SkData* encode_to_dct_data(size_t* pixelRefOffset, const SkBitmap& bitmap);
271 static void force_all_opaque(const SkBitmap& bitmap) {
272 SkColorType colorType = bitmap.colorType();
275 force_all_opaque_8888(bitmap);
281 SkDebugf("unsupported bitmap colorType %d\n", colorType);
286 static void force_all_opaque_8888(const SkBitmap& bitmap) {
287 SkAutoLockPixels lock(bitmap);
288 for (int y = 0; y < bitmap.height(); y++) {
289 for (int x = 0; x < bitmap.width(); x++) {
290 *bitmap.getAddr32(x, y) |= (SK_A32_MASK << SK_A32_SHIFT)
1140 SkBitmap bitmap; local
1182 SkBitmap bitmap; local
1225 SkBitmap bitmap; local
1580 SkBitmap bitmap; local
1597 SkBitmap bitmap; local
1630 SkBitmap bitmap; local
1660 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleApp.cpp 1195 SkBitmap bitmap = capture_bitmap(canvas); local
2237 SkBitmap bitmap = capture_bitmap(canvas); local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkCanvas.cpp 88 by the device's XY offset and bitmap-bounds.
176 bitmap/device to draw into from this level. This value is NOT
451 SkBitmap bitmap; local
452 bitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
453 return bitmap;
501 SkCanvas::SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props)
507 SkAutoTUnref<SkBaseDevice> device(SkNEW_ARGS(SkBitmapDevice, (bitmap)));
511 SkCanvas::SkCanvas(const SkBitmap& bitmap)
517 SkAutoTUnref<SkBaseDevice> device(SkNEW_ARGS(SkBitmapDevice, (bitmap)));
642 bool SkCanvas::readPixels(SkBitmap* bitmap, int x, int y)
2509 SkBitmap bitmap; local
2526 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/third_party/skia/src/device/xps/
SkXPSDevice.cpp 107 SkBitmap bitmap; local
108 bitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
109 return bitmap;
629 const SkBitmap& bitmap,
635 if (!SkImageEncoder::EncodeStream(&write, bitmap,
637 HRM(E_FAIL, "Unable to encode bitmap as png.");
666 static_cast<FLOAT>(bitmap.width()), static_cast<FLOAT>(bitmap.height())
686 const SkScalar bWidth = SkIntToScalar(bitmap.width());
687 const SkScalar bHeight = SkIntToScalar(bitmap.height())
    [all...]
  /external/iproute2/include/linux/
xfrm.h 84 __u32 bitmap; member in struct:xfrm_replay_state
  /external/kernel-headers/original/uapi/linux/
xfrm.h 84 __u32 bitmap; member in struct:xfrm_replay_state
  /external/mesa3d/src/mesa/drivers/common/
meta.c 341 struct bitmap_state Bitmap; /**< For _mesa_meta_Bitmap() */
2625 struct bitmap_state *bitmap = &ctx->Meta->Bitmap; local
    [all...]

Completed in 2743 milliseconds

<<31323334353637383940>>