/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
BitmapDrawableTest.java | 32 import android.graphics.Bitmap; 38 import android.graphics.Bitmap.Config; 70 args = {android.graphics.Bitmap.class} 104 Bitmap bitmap = Bitmap.createBitmap(200, 300, Config.ARGB_8888); local 105 bitmapDrawable = new BitmapDrawable(bitmap); 109 assertEquals(bitmap, bitmapDrawable.getBitmap()); 116 new BitmapDrawable((Bitmap) null); 406 Bitmap bitmap = Bitmap.createBitmap(200, 300, Config.RGB_565) local [all...] |
/external/e2fsprogs/tests/f_badjourblks/ |
expect.1 | 13 Block bitmap differences: -(50--1079)
|
/external/e2fsprogs/tests/f_extra_journal/ |
expect.1 | 11 Block bitmap differences: -(50--1079)
|
/external/e2fsprogs/tests/f_imagic_fs/ |
expect.1 | 10 Block bitmap differences: -(9--19)
|
/external/e2fsprogs/tests/f_miss_journal/ |
expect.1 | 11 Block bitmap differences: -(50--1079)
|
/external/skia/include/utils/ |
SkDumpCanvas.h | 81 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, 83 virtual void drawBitmapRect(const SkBitmap& bitmap, const SkIRect* src, 85 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m, 87 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
|
/external/skia/src/core/ |
SkBlitBWMaskTemplate.h | 27 SK_BLITBWMASK_NAME name of function(const SkBitmap& bitmap, const SkMask& mask, const SkIRect& clip, SK_BLITBWMASK_ARGS) 34 static void SK_BLITBWMASK_NAME(const SkBitmap& bitmap, const SkMask& srcMask, const SkIRect& clip SK_BLITBWMASK_ARGS) 42 unsigned bitmap_rowBytes = bitmap.rowBytes(); 50 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
|
/external/webkit/WebCore/platform/image-decoders/wx/ |
ImageDecoderWx.cpp | 31 #include <wx/bitmap.h> 74 } // ensure that WxPixelData is destroyed as it unlocks the bitmap data in 81 wxGraphicsBitmap* bitmap = new wxGraphicsBitmap(wxGraphicsRenderer::GetDefaultRenderer()->CreateBitmap(*bmp)); local 83 return bitmap;
|
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
radiotap_iter.h | 18 * @bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.cpp | 93 SkBitmap bitmap; 95 &bitmap, SkBitmap::kNo_Config, SkImageDecoder::kDecodePixels_Mode); 100 // bitmap will go out of scope when we return from this method. 101 bitmap.lockPixels(); 103 const int w = bitmap.width(); 104 const int h = bitmap.height(); 105 const void* p = bitmap.getPixels(); 114 switch (bitmap.getConfig()) { 147 SkBitmap bitmap; local 149 &bitmap, SkBitmap::kRGB_565_Config [all...] |
/frameworks/base/core/res/res/drawable/ |
settings_header.xml | 17 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
/frameworks/base/core/tests/coretests/res/drawable/ |
bitmap_drawable.xml | 17 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
TextViewPerformanceTest.java | 20 import android.graphics.Bitmap; 43 Bitmap mBitmap = Bitmap.createBitmap(320, 240, Bitmap.Config.RGB_565);
|
/packages/apps/AlarmClock/res/drawable/ |
circle0_drawable.xml | 16 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
circle1_drawable.xml | 16 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
circle2_drawable.xml | 16 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
circle3_drawable.xml | 16 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
/packages/apps/Browser/src/com/android/browser/ |
BrowserBookmarksAdapter.java | 25 import android.graphics.Bitmap; 50 private Bitmap mCurrentThumbnail; 68 String curTitle, Bitmap curThumbnail, boolean createShortcut, 253 * @param favicon The favicon bitmap to write to the db. 256 final String originalUrl, final String url, final Bitmap favicon) { 268 favicon.compress(Bitmap.CompressFormat.PNG, 100, os); 382 Bitmap bitmap = null; local 384 bitmap = CombinedBookmarkHistoryActivity.getIconListenerSet() 387 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length) [all...] |
DownloadTouchIcon.java | 23 import android.graphics.Bitmap; 87 Bitmap icon = BitmapFactory.decodeStream( 114 private void storeIcon(Bitmap icon) { 126 icon.compress(Bitmap.CompressFormat.PNG, 100, os);
|
/packages/apps/Camera/src/com/android/camera/ |
BitmapManager.java | 20 import android.graphics.Bitmap; 30 * Provides utilities to decode bitmap, get thumbnail, and cancel the 34 * BitmapFactory.Options)} is used to decode a bitmap. During decoding another 100 public Bitmap getThumbnail(ContentResolver cr, long origId, int kind,
|
/packages/apps/Gallery/src/com/android/camera/ |
CropImage.java | 28 import android.graphics.Bitmap; 63 private Bitmap.CompressFormat mOutputFormat = 64 Bitmap.CompressFormat.JPEG; // only used with mSaveUri 84 private Bitmap mBitmap; 115 mOutputFormat = Bitmap.CompressFormat.valueOf( 121 mBitmap = (Bitmap) extras.getParcelable("data"); 141 // TODO when saving the resulting bitmap use the 185 final Bitmap b = (mImage != null) 215 // bitmap doesn't have to be read into memory 223 Bitmap croppedImage [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_PeopleTest.java | 25 import android.graphics.Bitmap; 308 Bitmap bitmap = BitmapFactory.decodeStream(photoStream, null, null); 309 assertEquals(212, bitmap.getWidth()); 310 assertEquals(142, bitmap.getHeight()); 320 bitmap = People.loadContactPhoto(context, mPeopleRowsAdded.get(0), 322 assertEquals(212, bitmap.getWidth()); 323 assertEquals(142, bitmap.getHeight()); 325 bitmap = People.loadContactPhoto(context, null, 327 assertEquals(48, bitmap.getWidth()) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/picogui/ |
SDL_pgvideo.c | 194 if ( this->hidden->bitmap ) { 195 /* Free old bitmap */ 200 pgDelete(this->hidden->bitmap); 209 /* Create a new picogui bitmap */ 210 this->hidden->bitmap = pgCreateBitmap(width,height); 211 this->hidden->shm = *pgMakeSHMBitmap(this->hidden->bitmap); 226 /* 1. Incremental bitmap rendering 229 0,0,0,0,this->hidden->bitmap); 232 /* 2. Normal bitmap rendering 235 0,0,this->hidden->shm.width,this->hidden->shm.height,this->hidden->bitmap); [all...] |
/external/skia/include/core/ |
SkCanvas.h | 39 A Canvas encapsulates all of the state about drawing into a device (bitmap). 54 /** Construct a canvas with the specified bitmap to draw into. 55 @param bitmap Specifies a bitmap for the canvas to draw into. Its 58 explicit SkCanvas(const SkBitmap& bitmap); 81 the bitmap of the pixels that the canvas draws into. The reference count 92 /** Specify a bitmap for the canvas to draw into. This is a help method for 93 setDevice(), and it creates a device for the bitmap by calling 94 createDevice(). The structure of the bitmap is copied into the device. 96 virtual SkDevice* setBitmapDevice(const SkBitmap& bitmap); [all...] |
/cts/tests/res/xml/ |
layerdrawable.xml | 33 <bitmap android:src="@drawable/testimage"/> 40 <bitmap android:src="@drawable/testimage"/>
|