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
261
Rect
cropHint
= parseCropHint(info, hintTag);
262
if (
cropHint
!= null) {
265
Slog.v(TAG, "Restored crop hint " +
cropHint
);
268
mWm.setStream(in,
cropHint
.isEmpty() ? null :
cropHint
, true, which);
275
Rect
cropHint
= new Rect();
286
cropHint
.left = getAttributeInt(parser, "cropLeft", 0);
287
cropHint
.top = getAttributeInt(parser, "cropTop", 0);
288
cropHint
.right = getAttributeInt(parser, "cropRight", 0);
289
cropHint
.bottom = getAttributeInt(parser, "cropBottom", 0)
[
all
...]
/frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java
323
Rect
cropHint
= new Rect(wallpaper.
cropHint
);
329
+ " crop=(" +
cropHint
.width() + 'x' +
cropHint
.height()
345
if (
cropHint
.isEmpty()) {
346
cropHint
.left =
cropHint
.top = 0;
347
cropHint
.right = options.outWidth;
348
cropHint
.bottom = options.outHeight;
351
cropHint
.offset
[
all
...]
Completed in 1857 milliseconds