OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cropHint
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
WallpaperBackupAgent.java
140
Rect
cropHint
= parseCropHint(infoStage);
141
if (
cropHint
!= null) {
143
Slog.v(TAG, "Restored crop hint " +
cropHint
+ "; now writing data");
147
wm.setStream(in,
cropHint
, true, WallpaperManager.FLAG_SYSTEM);
163
Rect
cropHint
= new Rect();
174
cropHint
.left = getAttributeInt(parser, "cropLeft", 0);
175
cropHint
.top = getAttributeInt(parser, "cropTop", 0);
176
cropHint
.right = getAttributeInt(parser, "cropRight", 0);
177
cropHint
.bottom = getAttributeInt(parser, "cropBottom", 0);
187
return
cropHint
;
[
all
...]
/frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java
324
Rect
cropHint
= new Rect(wallpaper.
cropHint
);
330
+ " crop=(" +
cropHint
.width() + 'x' +
cropHint
.height()
346
if (
cropHint
.isEmpty()) {
347
cropHint
.left =
cropHint
.top = 0;
348
cropHint
.right = options.outWidth;
349
cropHint
.bottom = options.outHeight;
352
cropHint
.offset
[
all
...]
Completed in 114 milliseconds