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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/dm/
DMPDFRasterizeTask.cpp 29 SkBitmap bitmap; local
31 if (fRasterize(fPdf.get(), &bitmap)) {
32 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, "PDF", bitmap)));
DMGpuGMTask.cpp 43 SkBitmap bitmap; local
44 bitmap.setInfo(info);
45 canvas->readPixels(&bitmap, 0, 0);
47 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, "GM", bitmap)));
DMSKPTask.cpp 24 SkBitmap bitmap; local
25 AllocatePixels(kN32_SkColorType, width, height, &bitmap);
26 DrawPicture(*fPicture, &bitmap);
28 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, "SKP", bitmap)));
  /external/chromium_org/third_party/skia/tools/
test_image_decoder.cpp 25 SkBitmap bitmap; local
26 if (!(SkImageDecoder::DecodeFile(argv[1], &bitmap))) {
29 if (bitmap.empty()) {
  /external/skia/dm/
DMPDFRasterizeTask.cpp 28 SkBitmap bitmap; local
30 if (fRasterize(&pdfStream, &bitmap)) {
31 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
DMSKPTask.cpp 12 SkBitmap bitmap; local
13 AllocatePixels(kN32_SkColorType, fPicture->width(), fPicture->height(), &bitmap);
14 DrawPicture(fPicture, &bitmap);
17 (*this, fPicture, bitmap, RecordTask::kNoOptimize_Mode)));
19 (*this, fPicture, bitmap, RecordTask::kOptimize_Mode)));
20 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
DMCpuGMTask.cpp 28 SkBitmap bitmap; local
29 AllocatePixels(fColorType, fGM->getISize().width(), fGM->getISize().height(), &bitmap);
31 SkCanvas canvas(bitmap);
37 SPAWN(ExpectationsTask, fExpectations, bitmap);
39 SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kInProcess_Mode);
40 SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kCrossProcess_Mode);
41 SPAWN(PipeTask, fGMFactory(NULL), bitmap, PipeTask::kSharedAddress_Mode);
42 SPAWN(QuiltTask, fGMFactory(NULL), bitmap);
43 SPAWN(RecordTask, fGMFactory(NULL), bitmap, RecordTask::kOptimize_Mode);
44 SPAWN(RecordTask, fGMFactory(NULL), bitmap, RecordTask::kNoOptimize_Mode)
    [all...]
DMGpuGMTask.cpp 39 SkBitmap bitmap; local
40 bitmap.setInfo(info);
41 canvas->readPixels(&bitmap, 0, 0);
43 this->spawnChild(SkNEW_ARGS(ExpectationsTask, (*this, fExpectations, bitmap)));
44 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
DMRecordTask.cpp 47 // Draw the SkRecord back into a bitmap.
48 SkBitmap bitmap; local
49 AllocatePixels(fReference, &bitmap);
50 SkCanvas target(bitmap);
53 if (!BitmapsEqual(bitmap, fReference)) {
55 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
DMReplayTask.cpp 32 SkBitmap bitmap; local
33 AllocatePixels(fReference, &bitmap);
34 DrawPicture(recorded, &bitmap);
35 if (!BitmapsEqual(bitmap, fReference)) {
37 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
DMSerializeTask.cpp 30 SkBitmap bitmap; local
31 AllocatePixels(fReference, &bitmap);
32 DrawPicture(reconstructed, &bitmap);
33 if (!BitmapsEqual(bitmap, fReference)) {
35 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap)));
  /external/skia/tools/
test_image_decoder.cpp 25 SkBitmap bitmap; local
26 if (!(SkImageDecoder::DecodeFile(argv[1], &bitmap))) {
29 if (bitmap.empty()) {
  /external/chromium_org/third_party/skia/tests/
BitmapHasherTest.cpp 17 // Fill in bitmap with test data.
18 static void CreateTestBitmap(SkBitmap* bitmap, int width, int height,
20 bitmap->allocN32Pixels(width, height, kOpaque_SkAlphaType);
21 bitmap->eraseColor(color);
26 SkBitmap bitmap; local
29 CreateTestBitmap(&bitmap, 333, 555, SK_ColorBLUE, reporter);
30 REPORTER_ASSERT(reporter, SkBitmapHasher::ComputeDigest(bitmap, &digest));
33 CreateTestBitmap(&bitmap, 555, 333, SK_ColorBLUE, reporter);
34 REPORTER_ASSERT(reporter, SkBitmapHasher::ComputeDigest(bitmap, &digest));
37 CreateTestBitmap(&bitmap, 555, 333, SK_ColorGREEN, reporter)
    [all...]
  /external/chromium_org/ui/base/cursor/
cursor_loader_x11_unittest.cc 18 SkBitmap bitmap; local
19 bitmap.allocN32Pixels(10, 5);
20 bitmap.eraseColor(SK_ColorBLACK);
26 &bitmap,
28 EXPECT_EQ(10, bitmap.width());
29 EXPECT_EQ(5, bitmap.height());
34 &bitmap,
37 EXPECT_EQ(5, bitmap.width());
38 EXPECT_EQ(10, bitmap.height());
43 &bitmap,
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
BitmapCache.java 17 package com.android.bitmap;
DecodeAggregator.java 17 package com.android.bitmap;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapResource.java 1 package com.bumptech.glide.load.resource.bitmap;
3 import android.graphics.Bitmap;
8 public class BitmapResource extends Resource<Bitmap> {
9 private Bitmap bitmap; field in class:BitmapResource
12 public BitmapResource(Bitmap bitmap, BitmapPool bitmapPool) {
13 this.bitmap = bitmap;
18 public Bitmap get()
    [all...]
  /external/chromium_org/cc/test/
skia_common.cc 20 SkBitmap bitmap; local
21 bitmap.installPixels(info, buffer, info.minRowBytes());
22 SkCanvas canvas(bitmap);
29 void CreateBitmap(const gfx::Size& size, const char* uri, SkBitmap* bitmap) {
32 bitmap->allocPixels(info);
33 bitmap->pixelRef()->setImmutable();
34 bitmap->pixelRef()->setURI(uri);
  /external/chromium_org/content/renderer/fetchers/
image_resource_fetcher.cc 52 SkBitmap bitmap; local
56 bitmap = decoder.Decode(
66 callback.Run(this, bitmap);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageBufferSurface.cpp 68 const SkBitmap& ImageBufferSurface::bitmap() function in class:blink::ImageBufferSurface
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_frame_win.h 23 // Frame data is stored in a GDI bitmap.
31 HBITMAP bitmap() { return bitmap_; } function in class:webrtc::DesktopFrameWin
38 HBITMAP bitmap);
  /external/chromium_org/ui/gfx/image/
image_png_rep.cc 32 SkBitmap bitmap; local
34 &bitmap)) {
38 return gfx::Size(bitmap.width(), bitmap.height());
  /external/skia/tests/
BitmapHasherTest.cpp 17 // Fill in bitmap with test data.
18 static void CreateTestBitmap(SkBitmap* bitmap, int width, int height,
21 REPORTER_ASSERT(reporter, bitmap->allocPixels(info));
22 bitmap->eraseColor(color);
27 SkBitmap bitmap; local
30 CreateTestBitmap(&bitmap, 333, 555, SK_ColorBLUE, reporter);
31 REPORTER_ASSERT(reporter, SkBitmapHasher::ComputeDigest(bitmap, &digest));
34 CreateTestBitmap(&bitmap, 555, 333, SK_ColorBLUE, reporter);
35 REPORTER_ASSERT(reporter, SkBitmapHasher::ComputeDigest(bitmap, &digest));
38 CreateTestBitmap(&bitmap, 555, 333, SK_ColorGREEN, reporter)
    [all...]
  /external/wpa_supplicant_8/src/ap/
p2p_hostapd.c 96 u8 bitmap; local
105 bitmap = P2P_MAN_DEVICE_MANAGEMENT;
107 bitmap |= P2P_MAN_CROSS_CONNECTION_PERMITTED;
108 bitmap |= P2P_MAN_COEXISTENCE_OPTIONAL;
109 *eid++ = bitmap;
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
Parallaxable.java 17 package com.android.bitmap.drawable;

Completed in 831 milliseconds

1 2 3 4 5 6 7 8 91011>>