HomeSort by relevance Sort by last modified time
    Searched full:bitmap_delegate (Results 1 - 10 of 10) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 52 public final class Bitmap_Delegate {
55 private static final DelegateManager<Bitmap_Delegate> sManager =
56 new DelegateManager<Bitmap_Delegate>(Bitmap_Delegate.class);
71 * Returns the native delegate associated to a given {@link Bitmap_Delegate} object.
73 public static Bitmap_Delegate getDelegate(Bitmap bitmap) {
80 public static Bitmap_Delegate getDelegate(int native_bitmap) {
97 Bitmap_Delegate delegate = new Bitmap_Delegate(ImageIO.read(input), Config.ARGB_8888);
115 Bitmap_Delegate delegate = new Bitmap_Delegate(ImageIO.read(input), Config.ARGB_8888)
    [all...]
NinePatch_Delegate.java 188 final Bitmap_Delegate bitmap_delegate = Bitmap_Delegate.getDelegate(bitmap_instance); local
189 if (bitmap_delegate == null) {
195 BufferedImage image = bitmap_delegate.getImage();
220 chunkObject.draw(bitmap_delegate.getImage(), graphics,
Canvas_Delegate.java 65 private Bitmap_Delegate mBitmap;
318 Bitmap_Delegate bitmapDelegate = Bitmap_Delegate.getDelegate(nativeBitmapOrZero);
826 Bitmap_Delegate bitmapDelegate = Bitmap_Delegate.getDelegate(bitmap);
847 Bitmap_Delegate bitmapDelegate = Bitmap_Delegate.getDelegate(bitmap);
    [all...]
BitmapFactory_Delegate.java 115 bm = Bitmap_Delegate.createBitmap(ninePatch.getImage(), true /*isMutable*/,
130 bm = Bitmap_Delegate.createBitmap(is, true, density);
BitmapShader_Delegate.java 70 Bitmap_Delegate bitmap = Bitmap_Delegate.getDelegate(native_bitmap);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderDrawable.java 30 import android.graphics.Bitmap_Delegate;
103 Bitmap bitmap = Bitmap_Delegate.createBitmap(image,
GcSnapshot.java 22 import android.graphics.Bitmap_Delegate;
93 private final Bitmap_Delegate mBitmap;
110 Layer(Graphics2D graphics, Bitmap_Delegate bitmap) {
119 * {@link Bitmap_Delegate} (case of the base layer), then
120 * {@link Layer#Layer(Graphics2D, Bitmap_Delegate)} should be used.
202 * If <var>bitmap</var> is null, then {@link GcSnapshot#setBitmap(Bitmap_Delegate)} must be
209 public static GcSnapshot createDefaultSnapshot(Bitmap_Delegate bitmap) {
386 * Link the snapshot to a Bitmap_Delegate.
389 * {@link #createDefaultSnapshot(Bitmap_Delegate)}, and is therefore not yet linked to
395 public void setBitmap(Bitmap_Delegate bitmap)
    [all...]
ResourceHelper.java 35 import android.graphics.Bitmap_Delegate;
233 bitmap = Bitmap_Delegate.createBitmap(bmpFile, false /*isMutable*/,
284 bitmap = Bitmap_Delegate.createBitmap(ninePatch.getImage(),
RenderSessionImpl.java 65 import android.graphics.Bitmap_Delegate;
550 Bitmap bitmap = Bitmap_Delegate.createBitmap(mImage,
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 36 import android.graphics.Bitmap_Delegate;
129 bitmap = Bitmap_Delegate.createBitmap(stream, false /*isMutable*/, density);

Completed in 504 milliseconds