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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGeneratorTest.cpp 132 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
134 EXPECT_EQ(fullSize(), fullImage->scaledSize());
135 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
138 EXPECT_EQ(fullImage, tempImage);
147 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
149 EXPECT_EQ(fullSize(), fullImage->scaledSize());
150 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
154 EXPECT_NE(fullImage, scaledImage);
181 const ScaledImageFragment* fullImage = m_generator->decodeAndScale(fullSize());
182 EXPECT_NE(scaledImage, fullImage);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 333 BitmapRegionDecoder fullImage = future.get();
334 if (fullImage != null) fullImage.recycle();
339 entry.fullImage = future.get();
340 if (entry.fullImage != null) {
612 BitmapRegionDecoder fullImage = entry.fullImage;
614 if (fullImage != null) {
616 fullImage.getWidth(), fullImage.getHeight())
    [all...]
  /packages/apps/Settings/src/com/android/settings/users/
RestrictedProfileSettings.java 466 Bitmap fullImage = null;
470 fullImage = BitmapFactory.decodeStream(imageStream);
474 if (fullImage != null) {
475 final int squareSize = Math.min(fullImage.getWidth(),
476 fullImage.getHeight());
477 final int left = (fullImage.getWidth() - squareSize) / 2;
478 final int top = (fullImage.getHeight() - squareSize) / 2;
483 canvas.drawBitmap(fullImage, rectSource, rectDest, paint);

Completed in 35 milliseconds