HomeSort by relevance Sort by last modified time
    Searched refs:Bitmap (Results 101 - 125 of 619) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
PorterDuffColorFilterTest.java 18 import android.graphics.Bitmap;
24 import android.graphics.Bitmap.Config;
43 Bitmap b1 = Bitmap.createBitmap(width / 2, height, Config.ARGB_8888);
45 Bitmap b2 = Bitmap.createBitmap(width, height / 2, Config.ARGB_8888);
48 Bitmap target = Bitmap.createBitmap(width, height, Config.ARGB_8888);
BitmapFactoryTest.java 26 import android.graphics.Bitmap;
30 import android.graphics.Bitmap.CompressFormat;
31 import android.graphics.Bitmap.Config;
110 Bitmap b = BitmapFactory.decodeResource(mRes, R.drawable.start,
113 // Test the bitmap size
116 // Test if no bitmap
126 Bitmap b = BitmapFactory.decodeResource(mRes, R.drawable.start);
128 // Test the bitmap size
144 Bitmap b = BitmapFactory.decodeResourceStream(mRes, value, is, r, mOpt1);
146 // Test the bitmap siz
328 Bitmap bitmap = BitmapFactory.decodeResource(mRes, R.drawable.start, opt); local
    [all...]
Canvas_VertexModeTest.java 18 import android.graphics.Bitmap;
21 import android.graphics.Bitmap.Config;
62 Bitmap bitmap = Bitmap.createBitmap(10, 27, Config.RGB_565); local
63 Canvas c = new Canvas(bitmap);
  /external/webkit/Source/JavaScriptCore/wtf/
PageAllocatorSymbian.h 33 #include <wtf/Bitmap.h>
93 Bitmap<largeReservationSize / m_pageSize> m_map;
  /frameworks/base/core/java/android/view/
GLES20Layer.java 20 import android.graphics.Bitmap;
46 boolean copyInto(Bitmap bitmap) {
47 return GLES20Canvas.nCopyLayer(mLayer, bitmap.mNativeBitmap);
HardwareLayer.java 19 import android.graphics.Bitmap;
131 * Copies this layer into the specified bitmap.
133 * @param bitmap The bitmap to copy they layer into
137 abstract boolean copyInto(Bitmap bitmap);
GLES20DisplayList.java 19 import android.graphics.Bitmap;
29 final ArrayList<Bitmap> mBitmaps = new ArrayList<Bitmap>(5);
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
Item.java 19 import android.graphics.Bitmap;
34 public Bitmap icon;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsSkewActivity.java 21 import android.graphics.Bitmap;
39 private final Bitmap mBitmap1;
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2UriObserverTests.java 22 import android.graphics.Bitmap;
23 import android.graphics.Bitmap.Config;
56 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888);
58 favicon.compress(Bitmap.CompressFormat.PNG, 100, os);
92 Bitmap favicon = Bitmap.createBitmap(16, 16, Config.ARGB_8888);
94 favicon.compress(Bitmap.CompressFormat.PNG, 100, os);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaItem.java 21 import android.graphics.Bitmap;
44 public abstract Job<Bitmap> requestImage(int type);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MultiLineTexture.java 19 import android.graphics.Bitmap;
48 protected void onDraw(Canvas canvas, Bitmap backing) {
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicPagedViewIcon.java 20 import android.graphics.Bitmap;
43 Bitmap overlay = mOriginalIcon.getHolographicOutline();
  /packages/apps/Mms/src/com/android/mms/ui/
SlideViewInterface.java 20 import android.graphics.Bitmap;
29 void setImage(String name, Bitmap bitmap);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 22 import android.graphics.Bitmap;
102 * at the time the bitmap is loaded).
105 private final Bitmap mBitmap;
112 private FastBitmapDrawable(Bitmap bitmap) {
113 mBitmap = bitmap;
114 mWidth = bitmap.getWidth();
115 mHeight = bitmap.getHeight();
182 private Bitmap mWallpaper;
183 private Bitmap mDefaultWallpaper
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ArcShapeTest.java 23 import android.graphics.Bitmap;
26 import android.graphics.Bitmap.Config;
63 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); local
64 Canvas canvas = new Canvas(bitmap);
71 // check the color at the center of bitmap
72 assertEquals(TEST_COLOR_1, bitmap.getPixel(TEST_WIDTH / 2, TEST_HEIGHT / 2));
82 if (bitmap.getPixel(i, i) == TEST_COLOR_2) {
OvalShapeTest.java 23 import android.graphics.Bitmap;
26 import android.graphics.Bitmap.Config;
58 Bitmap bitmap = Bitmap.createBitmap(TEST_WIDTH, TEST_HEIGHT, Config.ARGB_8888); local
59 Canvas canvas = new Canvas(bitmap);
66 // check the color at the center of bitmap
67 assertEquals(TEST_COLOR_1, bitmap.getPixel(TEST_WIDTH / 2, TEST_HEIGHT / 2));
76 if (bitmap.getPixel(i, i) == TEST_COLOR_2) {
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutTestActivity.java 23 import android.graphics.Bitmap;
40 * compares or generates a bitmap of the layout.
127 private Bitmap mBitmap;
158 private Bitmap mBitmap;
159 private Bitmap mReferenceBitmap;
174 private boolean compareTo(Bitmap bitmap, Bitmap reference, int threshold) {
175 if (bitmap.getConfig() != reference.getConfig() ||
176 bitmap.getWidth() != reference.getWidth() |
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 23 import android.graphics.Bitmap;
85 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.RGB_565); local
88 mContext.setWallpaper(bitmap);
89 fail("Context.setWallpaper(BitMap) did not throw SecurityException as expected.");
  /external/chromium/net/disk_cache/
bitmap_unittest.cc 5 #include "net/disk_cache/bitmap.h"
10 disk_cache::Bitmap map32(32, false);
13 disk_cache::Bitmap map64(64, false);
18 // Verify that the default constructor doesn't allocate a bitmap.
19 disk_cache::Bitmap map;
26 disk_cache::Bitmap bitmap(80, true);
30 EXPECT_EQ(80, bitmap.Size());
31 EXPECT_EQ(3, bitmap.ArraySize());
34 EXPECT_EQ(0U, bitmap.GetMapElement(1))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
StillImageHaiku.h 32 #include <Bitmap.h>
38 static PassRefPtr<StillImage> create(const BBitmap& bitmap)
40 return adoptRef(new StillImage(bitmap));
  /frameworks/base/core/tests/coretests/src/android/view/
ZeroSizedTest.java 25 import android.graphics.Bitmap;
89 private Bitmap createCacheForView(final View view) {
90 final Bitmap[] cache = new Bitmap[1];
  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 26 import android.graphics.Bitmap;
60 static Bitmap createIcon(Context context, Bitmap touchIcon, Bitmap favicon,
81 private static Bitmap createIcon(Context context, Bitmap touchIcon,
82 Bitmap favicon, BookmarkIconType type, int iconDimension, int iconDensity) {
83 Bitmap bm = Bitmap.createBitmap(iconDimension, iconDimension, Bitmap.Config.ARGB_8888)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoObject.java 22 import android.graphics.Bitmap;
65 public Bitmap fullSizeBitmap(int minSideLength, int maxNumberOfPixels,
104 public Bitmap thumbBitmap(boolean rotateAsNeeded) {
109 public Bitmap miniThumbBitmap() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrackingPatternView.java 25 import android.graphics.Bitmap;
30 private Bitmap mTexture;
49 final Bitmap texture = mTexture;

Completed in 657 milliseconds

1 2 3 45 6 7 8 91011>>