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

  /frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
WallpaperBackupAgent.java 266 Rect cropHint = parseCropHint(info, hintTag);
267 if (cropHint != null) {
270 Slog.v(TAG, "Restored crop hint " + cropHint);
273 mWm.setStream(in, cropHint.isEmpty() ? null : cropHint, true, which);
280 Rect cropHint = new Rect();
291 cropHint.left = getAttributeInt(parser, "cropLeft", 0);
292 cropHint.top = getAttributeInt(parser, "cropTop", 0);
293 cropHint.right = getAttributeInt(parser, "cropRight", 0);
294 cropHint.bottom = getAttributeInt(parser, "cropBottom", 0)
    [all...]
  /frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java 479 Rect cropHint = new Rect(wallpaper.cropHint);
485 + " crop=(" + cropHint.width() + 'x' + cropHint.height()
501 if (cropHint.isEmpty()) {
502 cropHint.left = cropHint.top = 0;
503 cropHint.right = options.outWidth;
504 cropHint.bottom = options.outHeight;
507 cropHint.offset
    [all...]
  /frameworks/base/core/java/android/app/
IWallpaperManager.aidl 40 * A 'null' cropHint rectangle is explicitly permitted as a sentinel for "whatever
47 in Rect cropHint, boolean allowBackup, out Bundle extras, int which,

Completed in 129 milliseconds