OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fullImage
(Results
1 - 4
of
4
) 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
));
/frameworks/base/core/java/android/app/
WallpaperManager.java
[
all
...]
Completed in 275 milliseconds