HomeSort by relevance Sort by last modified time
    Searched defs:bitmap (Results 1 - 25 of 352) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 40 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(image->size(), ShareableBitmap::SupportsAlpha); local
41 bitmap->createGraphicsContext()->drawImage(image, ColorSpaceDeviceRGB, IntPoint());
43 bitmap->createHandle(handle);
54 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(handle);
55 if (!bitmap)
57 image = createImage(bitmap.get());
WebImage.h 53 ShareableBitmap* bitmap() const { return m_bitmap.get(); } function in class:WebKit::WebImage
  /external/chromium/chrome/browser/ui/gtk/status_icons/
status_tray_gtk_unittest.cc 31 SkBitmap* bitmap = ResourceBundle::GetSharedInstance().GetBitmapNamed( local
33 icon->SetImage(*bitmap);
34 icon->SetPressedImage(*bitmap);
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win_unittest.cc 32 SkBitmap* bitmap = ResourceBundle::GetSharedInstance().GetBitmapNamed( local
34 icon->SetImage(*bitmap);
35 icon->SetPressedImage(*bitmap);
  /external/chromium/webkit/glue/
image_resource_fetcher.cc 43 SkBitmap bitmap; local
47 bitmap = decoder.Decode(
58 callback->Run(this, bitmap);
  /external/webkit/Source/WebKit2/UIProcess/
BackingStore.cpp 60 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(updateInfo.bitmapHandle); local
61 if (!bitmap)
63 ASSERT(bitmap->size() == updateInfo.updateRectBounds.size());
65 incorporateUpdate(bitmap.get(), updateInfo);
  /external/wpa_supplicant_8/src/ap/
p2p_hostapd.c 102 u8 bitmap; local
112 bitmap = P2P_MAN_DEVICE_MANAGEMENT;
114 bitmap |= P2P_MAN_CROSS_CONNECTION_PERMITTED;
115 bitmap |= P2P_MAN_COEXISTENCE_OPTIONAL;
116 *eid++ = bitmap;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CanvasTexture.java 19 import android.graphics.Bitmap;
21 import android.graphics.Bitmap.Config;
24 // The subclasses should override onDraw() to draw on the bitmap.
37 protected Bitmap onGetBitmap() {
38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig); local
39 mCanvas = new Canvas(bitmap);
40 onDraw(mCanvas, bitmap);
41 return bitmap;
    [all...]
  /system/media/mca/filterpacks/imageproc/java/
ImageEncoder.java 28 import android.graphics.Bitmap;
29 import android.graphics.Bitmap.CompressFormat;
60 Bitmap bitmap = input.getBitmap(); local
61 bitmap.compress(CompressFormat.JPEG, mQuality, mOutputStream);
  /external/qemu/distrib/sdl-1.2.12/src/video/picogui/
SDL_pgvideo.h 45 pghandle bitmap; member in struct:SDL_PrivateVideoData
  /external/webkit/Source/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/webkit/Tools/DumpRenderTree/win/
PixelDumpSupportWin.cpp 62 HBITMAP bitmap = CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, 0, 0); local
65 SelectObject(memoryDC, bitmap);
69 BITMAP info = {0};
70 GetObject(bitmap, sizeof(info), &info);
84 return BitmapContext::createByAdoptingBitmapAndContext(bitmap, context);
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
HideFindIndicator.cpp 35 static HBITMAP bitmap; member in namespace:TestWebKitAPI
45 bitmap = selectionBitmap;
75 TEST_ASSERT(bitmap);
76 ::DeleteObject(bitmap);
77 bitmap = 0;
82 TEST_ASSERT(!bitmap);
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 23 import android.graphics.Bitmap;
40 private final Bitmap mBitmap;
42 private ImageRecord(Bitmap bitmap) {
43 mBitmap = Preconditions.checkNotNull(bitmap);
59 Bitmap bitmap = BitmapFactory.decodeByteArray(content, 0, content.length); local
60 if (bitmap == null) {
63 return new ImageRecord(bitmap);
75 public static NdefRecord newImageRecord(Bitmap bitmap)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
SumPathEffectTest.java 23 import android.graphics.Bitmap;
32 import android.graphics.Bitmap.Config;
49 Bitmap bitmap = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888); local
50 bitmap.eraseColor(Color.BLACK);
51 Bitmap expected = Bitmap.createBitmap(WIDTH, HEIGHT, Config.ARGB_8888);
72 canvas = new Canvas(bitmap);
77 assertEquals(expected.getPixel(i, j), bitmap.getPixel(i, j))
    [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);
ShaderTest.java 19 import android.graphics.Bitmap;
56 Bitmap bitmap = Bitmap.createBitmap(color, width, height, Bitmap.Config.RGB_565); local
58 Shader shader = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
  /dalvik/vm/alloc/
MarkSweep.h 43 HeapBitmap *bitmap; member in struct:GcMarkContext
Verify.cpp 38 * Visitor applied to each bitmap element to search for things that
72 HeapBitmap *bitmap = dvmHeapSourceGetLiveBits(); local
75 dvmHeapBitmapWalk(bitmap, dumpReferencesCallback, arg);
119 * Helper function to call dvmVerifyObject from a bitmap walker.
127 * Verifies the object references in a heap bitmap. Assumes the VM is
130 void dvmVerifyBitmap(const HeapBitmap *bitmap)
132 dvmHeapBitmapWalk(bitmap, verifyBitmapCallback, NULL);
  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.cpp 64 SkBitmap* bitmap = new SkBitmap; local
65 bitmap->setConfig(SkBitmap::kARGB_8888_Config, width, height);
66 bitmap->allocPixels();
67 bitmap->eraseColor(0x00000000);
68 return bitmap;
  /external/chromium/chrome/browser/extensions/
extension_browser_actions_api.cc 52 SkBitmap bitmap; local
54 IPC::ReadParam(&bitmap_pickle, &iter, &bitmap));
55 browser_action_->SetIcon(tab_id_, bitmap);
  /external/chromium/chrome/common/
common_param_traits_unittest.cc 76 // Tests bitmap serialization.
77 TEST(IPCMessageTest, Bitmap) {
78 SkBitmap bitmap; local
80 bitmap.setConfig(SkBitmap::kARGB_8888_Config, 10, 5);
81 bitmap.allocPixels();
82 memset(bitmap.getPixels(), 'A', bitmap.getSize());
85 IPC::ParamTraits<SkBitmap>::Write(&msg, bitmap);
91 EXPECT_EQ(bitmap.config(), output.config());
92 EXPECT_EQ(bitmap.width(), output.width())
    [all...]
  /external/chromium/chrome/common/extensions/
extension_action_unittest.cc 28 SkBitmap bitmap; local
30 bitmap = decoder.Decode(data, file_contents.length());
32 return bitmap;
  /external/freetype/src/raster/
ftrend1.c 97 /* convert a slot's glyph image into a bitmap */
108 FT_Bitmap* bitmap; local
179 bitmap = &slot->bitmap;
182 /* release old bitmap buffer */
185 FT_FREE( bitmap->buffer );
194 bitmap->pixel_mode = FT_PIXEL_MODE_GRAY;
195 bitmap->num_grays = 256;
200 bitmap->pixel_mode = FT_PIXEL_MODE_MONO;
203 bitmap->width = width
    [all...]
  /external/oprofile/libdb/
db_debug.c 21 unsigned char * bitmap = malloc(data->descr->current_size); local
22 memset(bitmap, '\0', data->descr->current_size);
29 if (bitmap[index])
32 bitmap[index] = 1;
41 memset(bitmap, '\0', data->descr->current_size);
46 if (bitmap[index])
49 bitmap[index] = 1;
59 bitmap[index] = 1;
64 free(bitmap);
73 unsigned char * bitmap = malloc(max + 1) local
    [all...]

Completed in 1390 milliseconds

1 2 3 4 5 6 7 8 91011>>