| /external/chromium/chrome/browser/ui/gtk/tabs/ |
| tab_renderer_gtk.cc | 281 delete it->second.bitmap; 447 // Since we use bitmap images, the real minimum height of the image is 563 delete it->second.bitmap; 768 // We store a bitmap for each mask + background pair (4 total bitmaps). We 775 return it->second.bitmap; 779 delete it->second.bitmap; 784 CachedBitmap bitmap = { local 789 cached_bitmaps_[std::make_pair(mask, background)] = bitmap; 790 return bitmap.bitmap; [all...] |
| /external/chromium/chrome/browser/ui/views/location_bar/ |
| location_bar_view.cc | 546 const SkBitmap& bitmap = profile_->GetExtensionService()-> local 548 selected_keyword_view_->SetImage(bitmap); [all...] |
| /external/chromium/chrome/browser/ui/views/tabs/ |
| tab_strip.cc | 92 // These values are defined by the shape of the new tab bitmap. Should that 93 // bitmap ever change, these values will need to be updated. They're so 576 SkBitmap* bitmap = tp->GetBitmapNamed(IDR_NEWTAB_BUTTON); local 581 newtab_button_->SetImage(views::CustomButton::BS_NORMAL, bitmap); [all...] |
| /external/kernel-headers/original/linux/raid/ |
| md_k.h | 90 * resync from the bitmap 231 struct bitmap *bitmap; /* the bitmap for the device */ member in struct:mddev_s 232 struct file *bitmap_file; /* the bitmap file */ 234 * start of bitmap. May be 238 * hot-adding a bitmap. It should
|
| /external/skia/src/gpu/ |
| SkGpuDevice.cpp | 88 const SkBitmap& bitmap, 94 *texture = this->set(device, bitmap, params); 104 const SkBitmap& bitmap, 111 GrTexture* result = (GrTexture*)bitmap.getTexture(); 114 fTexture = GrLockAndRefCachedBitmapTexture(device->context(), bitmap, params); 162 SkBitmap bitmap; local 163 bitmap.setConfig(grConfig2skConfig(config, &isOpaque), 165 bitmap.setIsOpaque(isOpaque); 166 return bitmap; 241 // wrap the bitmap with a pixelref to expose our textur [all...] |
| /external/skia/src/pipe/ |
| SkGPipeWrite.cpp | 235 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 398 virtual bool insert(const SkBitmap& bitmap, int32_t slot) SK_OVERRIDE; 426 // We don't allocate pixels for the bitmap 427 SkBitmap bitmap; local 428 bitmap.setConfig(SkBitmap::kARGB_8888_Config, width, height); 429 SkDevice* device = SkNEW_ARGS(SkDevice, (bitmap)); [all...] |
| /external/skia/tests/ |
| CanvasTest.cpp | 227 SkBitmap bitmap; local 228 createBitmap(&bitmap, SkBitmap::kARGB_8888_Config, 0x05060708); 229 return bitmap; [all...] |
| /external/stressapptest/src/ |
| sat.cc | 303 // Set up the bitmap of physical pages in case we want to see which pages were 318 unsigned char *bitmap = new unsigned char[arraysize]; local 319 sat_assert(bitmap); 322 memset(bitmap, 0, arraysize); 325 page_bitmap_ = bitmap; [all...] |
| /external/tcpdump/ |
| ieee802_11.h | 197 u_int8_t bitmap[251]; member in struct:tim_t
|
| /external/webkit/Source/WebCore/platform/graphics/android/ |
| GraphicsLayerAndroid.cpp | 1032 SkBitmapRef* bitmap = image->nativeImageForCurrentFrame(); local [all...] |
| /external/webkit/Source/WebCore/platform/graphics/qt/ |
| GraphicsContextQt.cpp | 1310 HBITMAP bitmap = ::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0); local 1355 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)); local [all...] |
| /external/webkit/Source/WebCore/platform/graphics/skia/ |
| PlatformContextSkia.cpp | 291 const SkBitmap* bitmap = imageBuffer->context()->platformContext()->bitmap(); local 292 if (!bitmap->pixelRef()) { 293 // The bitmap owns it's pixels. This happens when we've allocated the 294 // pixels in some way and assigned them directly to the bitmap (as 296 // does not copy the pixels, rather the copied bitmap ends up 299 bitmap->copyTo(&m_state->m_imageBufferClip, SkBitmap::kARGB_8888_Config); 302 m_state->m_imageBufferClip = *bitmap; 611 const SkBitmap* PlatformContextSkia::bitmap() const function in class:WebCore::PlatformContextSkia 671 // the layer's bitmap while it's in effect. When WebKit calls restore() t 865 const SkBitmap& bitmap = m_canvas->getDevice()->accessBitmap(false); local 888 const SkBitmap& bitmap = m_canvas->getDevice()->accessBitmap(true); local [all...] |
| /frameworks/base/core/java/android/app/ |
| WallpaperManager.java | 22 import android.graphics.Bitmap; 122 * at the time the bitmap is loaded). 125 private final Bitmap mBitmap; 132 private FastBitmapDrawable(Bitmap bitmap) { 133 mBitmap = bitmap; 134 mWidth = bitmap.getWidth(); 135 mHeight = bitmap.getHeight(); 202 private Bitmap mWallpaper; 203 private Bitmap mDefaultWallpaper [all...] |
| /frameworks/base/core/java/com/android/internal/widget/ |
| TransportControlView.java | 28 import android.graphics.Bitmap; 108 if (mMetadata.bitmap != null) { 109 mMetadata.bitmap.recycle(); 111 mMetadata.bitmap = (Bitmap) msg.obj; 112 mAlbumArt.setImageBitmap(mMetadata.bitmap); 169 public void setArtwork(int generationId, Bitmap bitmap) { 172 handler.obtainMessage(MSG_SET_ARTWORK, generationId, 0, bitmap).sendToTarget(); 176 public void setAllMetadata(int generationId, Bundle metadata, Bitmap bitmap) 257 private Bitmap bitmap; field in class:TransportControlView.Metadata [all...] |
| WaveView.java | 24 import android.graphics.Bitmap; 89 private float mRingRadius = 182.0f; // Radius of bitmap ring. Used to snap halo to it 399 Bitmap bitmap = BitmapFactory.decodeResource(res, resId); local 400 return new BitmapDrawable(res, bitmap);
|
| /frameworks/base/core/jni/android/graphics/ |
| Canvas.cpp | 79 static SkCanvas* initRaster(JNIEnv* env, jobject, SkBitmap* bitmap) { 80 if (bitmap) { 81 return new SkCanvas(*bitmap); 83 // Create an empty bitmap device to prevent callers from crashing 481 SkCanvas* canvas, SkBitmap* bitmap, 496 canvas->drawBitmap(*bitmap, left_, top_, &filteredPaint); 498 canvas->drawBitmap(*bitmap, left_, top_, paint); 512 canvas->drawBitmap(*bitmap, 0, 0, &filteredPaint); 518 static void doDrawBitmap(JNIEnv* env, SkCanvas* canvas, SkBitmap* bitmap, 534 canvas->drawBitmapRect(*bitmap, srcPtr, dst, &filteredPaint) 565 SkBitmap bitmap; local [all...] |
| /frameworks/base/core/jni/ |
| android_view_GLES20Canvas.cpp | 353 OpenGLRenderer* renderer, SkBitmap* bitmap, jbyteArray buffer, 356 JavaHeapBitmapRef bitmapRef(env, bitmap, buffer); 358 renderer->drawBitmap(bitmap, left, top, paint); 362 OpenGLRenderer* renderer, SkBitmap* bitmap, jbyteArray buffer, 366 JavaHeapBitmapRef bitmapRef(env, bitmap, buffer); 368 renderer->drawBitmap(bitmap, srcLeft, srcTop, srcRight, srcBottom, 373 OpenGLRenderer* renderer, SkBitmap* bitmap, jbyteArray buffer, SkMatrix* matrix, 376 JavaHeapBitmapRef bitmapRef(env, bitmap, buffer); 378 renderer->drawBitmap(bitmap, matrix, paint); 384 SkBitmap* bitmap = new SkBitmap local [all...] |
| /frameworks/base/graphics/java/android/graphics/ |
| Bitmap.java | 29 public final class Bitmap implements Parcelable { 31 * Indicates that the bitmap was created for an unknown pixel density. 33 * @see Bitmap#getDensity() 34 * @see Bitmap#setDensity(int) 47 * Backing buffer for the Bitmap. 94 bitmap int (pointer). 98 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk, 107 bitmap int (pointer). 111 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk, 114 throw new RuntimeException("internal error: native bitmap is 0") 569 Bitmap bitmap; local [all...] |
| /frameworks/base/media/java/android/media/videoeditor/ |
| MediaImageItem.java | 20 import android.graphics.Bitmap; 155 final Bitmap imageBitmap; 168 imageBitmap.compress(Bitmap.CompressFormat.JPEG, 50,f1); 606 public Bitmap getThumbnail(int width, int height, long timeMs) throws IOException { 627 final Bitmap thumbnail = scaleImage(mFilename, width, height); 996 final Bitmap bitmap = Bitmap.createBitmap((int)bitmapWidth, local [all...] |
| /frameworks/base/services/java/com/android/server/connectivity/ |
| Vpn.java | 33 import android.graphics.Bitmap; 283 // Load the icon and convert it into a bitmap. 285 Bitmap bitmap = null; local 292 bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); 293 Canvas c = new Canvas(bitmap); 336 showNotification(config, label, bitmap); 423 private void showNotification(VpnConfig config, String label, Bitmap icon) [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| BrowserBookmarksPage.java | 33 import android.graphics.Bitmap; 233 static Bitmap getBitmap(Cursor cursor, int columnIndex) { 243 static Bitmap getBitmap(Cursor cursor, int columnIndex, Bitmap inBitmap) { 255 // Failed to re-use bitmap, create a new one 311 Bitmap bitmap = local 313 item.setFavicon(bitmap); 319 Bitmap bitmap = getBitmap(cursor, BookmarksLoader.COLUMN_INDEX_FAVICON) local [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
| ImageLoader.java | 24 import android.graphics.Bitmap; 25 import android.graphics.Bitmap.CompressFormat; 30 import android.graphics.Bitmap.CompressFormat; 64 // TODO: this class has waaaay to much bitmap copying. Cleanup. 69 private Bitmap mOriginalBitmapSmall = null; 70 private Bitmap mOriginalBitmapLarge = null; 71 private Bitmap mOriginalBitmapHighres = null; 72 private Bitmap mBackgroundBitmap = null; 125 // Couldn't read the bitmap, let's exit 219 public Bitmap decodeImage(int id, BitmapFactory.Options options) 430 Bitmap bitmap = decodeUriWithBackouts(context, sourceUri, options); local [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
| AlbumSetSlidingWindow.java | 19 import android.graphics.Bitmap; 388 Bitmap bitmap = mLabelMaker.requestLabel( local 391 mLoadingLabel = new BitmapTexture(bitmap); 430 protected Future<Bitmap> submitBitmapTask(FutureListener<Bitmap> l) { 436 protected void onLoadComplete(Bitmap bitmap) { 442 Bitmap bitmap = getBitmap() local 506 Bitmap bitmap = getBitmap(); local [all...] |
| /packages/apps/Launcher2/src/com/android/launcher2/ |
| DragController.java | 21 import android.graphics.Bitmap; 169 * @param bmp The bitmap that represents the view being dragged 174 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 177 public void startDrag(View v, Bitmap bmp, DragSource source, Object dragInfo, int dragAction, 199 * @param b The bitmap to display as the drag image. It will be re-scaled to the 201 * @param dragLayerX The x position in the DragLayer of the left-top of the bitmap. 202 * @param dragLayerY The y position in the DragLayer of the left-top of the bitmap. 207 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 210 public void startDrag(Bitmap b, int dragLayerX, int dragLayerY, 261 * Draw the view into a bitmap 287 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap); local [all...] |
| /packages/apps/Phone/src/com/android/phone/ |
| NotificationMgr.java | 31 import android.graphics.Bitmap; 421 int token, Drawable photo, Bitmap photoIcon, Object cookie) { 478 * the most suitable for {@link android.app.Notification.Builder#setLargeIcon(Bitmap)}, this 483 String name, String number, String type, Drawable photo, Bitmap photoIcon, long date) { 924 Bitmap bitmap = ((BitmapDrawable) callerInfo.cachedPhoto).getBitmap(); local 945 Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap(); local [all...] |