HomeSort by relevance Sort by last modified time
    Searched refs:cachedBitmap (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/skia/tests/
SkResourceCacheTest.cpp 102 SkBitmap cachedBitmap;
103 make_bitmap(&cachedBitmap, SkImageInfo::MakeN32Premul(5, 5), allocator);
104 cachedBitmap.setImmutable();
110 REPORTER_ASSERT(reporter, !SkBitmapCache::Add(cachedBitmap.getGenerationID(), SkIRect::MakeWH(4, 6), cachedBitmap, cache));
111 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
113 REPORTER_ASSERT(reporter, !SkBitmapCache::Add(cachedBitmap.getGenerationID(), SkIRect::MakeXYWH(-1, 0, 5, 5), cachedBitmap, cache));
114 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
117 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache))
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 179 SkBitmap cachedBitmap;
180 cachedBitmap.setInfo(this->info().makeWH(bounds.width(), bounds.height()));
183 if (!tryAllocBitmapPixels(&cachedBitmap)) {
188 void* buffer = cachedBitmap.getPixels();
192 buffer, cachedBitmap.rowBytes());
199 cachedBitmap.setImmutable();
201 SkBitmapCache::Add(this->getGenerationID(), bounds, cachedBitmap);
203 dst->swap(cachedBitmap);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageBufferSurface.cpp 75 const SkBitmap& ImageBufferSurface::cachedBitmap() const
ImageBufferSurface.h 71 virtual const SkBitmap& cachedBitmap() const;
ImageBuffer.cpp 269 // For ImageBufferSurface that enables cachedBitmap, Use the cached Bitmap for CPU side usage
273 bitmap = m_surface->cachedBitmap();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageBufferSurface.h 56 virtual const SkBitmap& cachedBitmap() const OVERRIDE { return m_cachedBitmap; }
  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 194 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
195 if (cachedBitmap != null) {
197 ImageContainer container = new ImageContainer(cachedBitmap, requestUrl, null, null);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java     [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusFlat.h     [all...]

Completed in 438 milliseconds