HomeSort by relevance Sort by last modified time
    Searched full:fullimage (Results 1 - 5 of 5) sorted by null

  /packages/apps/Settings/src/com/android/settings/users/
EditUserPhotoController.java 282 Bitmap fullImage = null;
286 fullImage = BitmapFactory.decodeStream(imageStream);
290 if (fullImage != null) {
291 final int squareSize = Math.min(fullImage.getWidth(),
292 fullImage.getHeight());
293 final int left = (fullImage.getWidth() - squareSize) / 2;
294 final int top = (fullImage.getHeight() - squareSize) / 2;
299 canvas.drawBitmap(fullImage, rectSource, rectDest, paint);
  /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...]
  /external/skia/tests/
SpecialImageTest.cpp 120 SkAutoTUnref<SkImage> fullImage(SkImage::NewFromBitmap(bm));
124 SkAutoTUnref<SkSpecialImage> img(SkSpecialImage::NewFromImage(subset, fullImage));
  /external/vboot_reference/firmware/lib/
vboot_display.c 143 char *fullimage = NULL; local
225 &fullimage, &inoutsize);
253 fullimage, inoutsize);
262 (FontArrayHeader *)fullimage);
289 VbExFree(fullimage);
  /frameworks/base/core/java/android/app/
WallpaperManager.java     [all...]

Completed in 580 milliseconds