HomeSort by relevance Sort by last modified time
    Searched refs:Bitmap (Results 1 - 25 of 1467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
Bitmap.aidl 19 parcelable Bitmap;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruPoolStrategy.java 3 import android.graphics.Bitmap;
6 void put(Bitmap bitmap);
7 Bitmap get(int width, int height, Bitmap.Config config);
8 Bitmap removeLast();
9 String logBitmap(Bitmap bitmap);
10 String logBitmap(int width, int height, Bitmap.Config config);
11 int getSize(Bitmap bitmap)
    [all...]
BitmapPool.java 3 import android.graphics.Bitmap;
6 * An interface for a pool that allows users to reuse {@link android.graphics.Bitmap} objects.
21 * {@link Bitmap}s should be evicted until the pool is smaller than the new max size.
29 * Adds the given {@link android.graphics.Bitmap} and returns {@code true} if the {@link android.graphics.Bitmap}
33 * Note - If the {@link android.graphics.Bitmap} is rejected (this method returns false) then it is the caller's
34 * responsibility to call {@link android.graphics.Bitmap#recycle()}.
38 * Note - This method will return {@code true} if the given {@link android.graphics.Bitmap} is synchronously
40 * {@link android.graphics.Bitmap} is not eligible to be added to the pool (either it is not mutable or it is
44 * @see android.graphics.Bitmap#isMutable(
    [all...]
BitmapPoolAdapter.java 3 import android.graphics.Bitmap;
7 * {@link android.graphics.Bitmap Bitmap}s added to it and always returns {@code null} from get.
21 public boolean put(Bitmap bitmap) {
26 public Bitmap get(int width, int height, Bitmap.Config config) {
31 public Bitmap getDirty(int width, int height, Bitmap.Config config) {
  /frameworks/support/v4/jellybean-mr2/android/support/v4/graphics/
BitmapCompatJellybeanMR2.java 18 import android.graphics.Bitmap;
21 public static boolean hasMipMap(Bitmap bitmap) {
22 return bitmap.hasMipMap();
25 public static void setHasMipMap(Bitmap bitmap, boolean hasMipMap) {
26 bitmap.setHasMipMap(hasMipMap);
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetNative.java 19 import android.graphics.Bitmap;
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize,
  /frameworks/support/v4/honeycomb_mr1/android/support/v4/graphics/
BitmapCompatHoneycombMr1.java 18 import android.graphics.Bitmap;
25 static int getAllocationByteCount(Bitmap bitmap) {
26 return bitmap.getByteCount();
  /frameworks/support/v4/kitkat/android/support/v4/graphics/
BitmapCompatKitKat.java 18 import android.graphics.Bitmap;
25 static int getAllocationByteCount(Bitmap bitmap) {
26 return bitmap.getAllocationByteCount();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BitmapCaller.java 19 import android.graphics.Bitmap;
22 public void available(Bitmap bmap);
ParameterIconStyle.java 19 import android.graphics.Bitmap;
22 Bitmap[] mBitmaps;
24 public ParameterIconStyle(int id, Bitmap[] styles) {
  /frameworks/base/core/java/com/android/internal/app/
IAssistScreenshotReceiver.aidl 19 import android.graphics.Bitmap;
23 void send(in Bitmap screenshot);
  /packages/apps/Camera2/src/com/android/camera/captureintent/event/
EventFastPictureBitmapAvailable.java 21 import android.graphics.Bitmap;
24 private final Bitmap mThumbnailBitmap;
26 public EventFastPictureBitmapAvailable(Bitmap thumbnailBitmap) {
30 public Bitmap getThumbnailBitmap() {
EventPictureDecoded.java 21 import android.graphics.Bitmap;
24 private final Bitmap mPictureBitmap;
27 public EventPictureDecoded(Bitmap pictureBitmap, byte[] pictureData) {
32 public Bitmap getPictureBitmap() {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
IActivityTransitionBitmapProvider.aidl 19 import android.graphics.Bitmap;
23 Bitmap getTransitionBitmap();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
BitmapSerializeUtils.java 19 import android.graphics.Bitmap;
24 * use case of having the same bitmap on both ends and just
38 * Reads a bitmap pixels from a file descriptor.
40 * @param bitmap A bitmap whose pixels to populate.
43 public static void readBitmapPixels(Bitmap bitmap, ParcelFileDescriptor source) {
44 nativeReadBitmapPixels(bitmap, source.getFd());
48 * Writes a bitmap pixels to a file descriptor.
50 * @param bitmap The bitmap
    [all...]
  /frameworks/support/v4/java/android/support/v4/graphics/
BitmapCompat.java 18 import android.graphics.Bitmap;
21 * Helper for accessing features in {@link android.graphics.Bitmap}
29 public boolean hasMipMap(Bitmap bitmap);
30 public void setHasMipMap(Bitmap bitmap, boolean hasMipMap);
31 public int getAllocationByteCount(Bitmap bitmap);
36 public boolean hasMipMap(Bitmap bitmap) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
ThumbnailData.java 20 import android.graphics.Bitmap;
26 public Bitmap thumbnail;
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
ThreadBitmapTest.java 20 import android.graphics.Bitmap;
38 public Bitmap b;
41 b = Bitmap.createBitmap(300, 300, Bitmap.Config.RGB_565);
GraphicsPerformanceTests.java 22 import android.graphics.Bitmap;
46 // odd-sized bitmap drawing tests
55 // even-sized bitmap drawing tests
71 /** Target "screen" (bitmap) width and height */
79 /** Bitmap we allocate and draw to */
80 protected Bitmap mDestBitmap;
91 // Create drawable bitmap for rendering into
92 mDestBitmap = Bitmap.createBitmap(SCREEN_WIDTH, SCREEN_HEIGHT,
93 Bitmap.Config.RGB_565);
124 /** Used to access package bitmap images *
    [all...]
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureData.java 19 import android.graphics.Bitmap;
24 Bitmap thumbnail;
26 public PictureData(int resourceId, String description, Bitmap thumbnail) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
BitmapImageViewTarget.java 3 import android.graphics.Bitmap;
7 * A {@link com.bumptech.glide.request.target.Target} that can display an {@link android.graphics.Bitmap} in an
12 public class BitmapImageViewTarget extends ImageViewTarget<Bitmap> {
18 * Sets the {@link android.graphics.Bitmap} on the view using
19 * {@link android.widget.ImageView#setImageBitmap(android.graphics.Bitmap)}.
21 * @param resource The bitmap to display.
24 protected void setResource(Bitmap resource) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ThumbnailCache.java 19 import android.graphics.Bitmap;
23 public class ThumbnailCache extends LruCache<Uri, Bitmap> {
29 protected int sizeOf(Uri key, Bitmap value) {

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 91011>>