Home
last modified time | relevance | path

Searched refs:mWallpaperId (Results 1 – 4 of 4) sorted by relevance

/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/
DTestWallpaperInfo.java56 private String mWallpaperId; field in TestWallpaperInfo
72 mWallpaperId = id; in TestWallpaperInfo()
81 mWallpaperId = in.readString(); in TestWallpaperInfo()
135 return mWallpaperId; in getWallpaperId()
140 mWallpaperId = wallpaperId; in setWallpaperId()
208 parcel.writeString(mWallpaperId); in writeToParcel()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DSystemStaticWallpaperInfo.java147 private final String mWallpaperId; field in SystemStaticWallpaperInfo
176 mWallpaperId = resName; in SystemStaticWallpaperInfo()
188 mWallpaperId = in.readString(); in SystemStaticWallpaperInfo()
202 mAsset = new SystemStaticAsset(res, mDrawableResId, mWallpaperId); in getAsset()
263 return mWallpaperId; in getWallpaperId()
267 return mWallpaperId; in getResName()
296 dest.writeString(mWallpaperId); in writeToParcel()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/
DCurrentWallpaperAssetVN.java46 int mWallpaperId; field in CurrentWallpaperAssetVN
56 mWallpaperId = mWallpaperManagerCompat.getWallpaperId(mWallpaperManagerFlag); in CurrentWallpaperAssetVN()
76 result = result * 31 + mWallpaperId; in hashCode()
85 && otherAsset.mWallpaperId == mWallpaperId; in equals()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/
DIndividualPickerActivity.java67 private String mWallpaperId; field in IndividualPickerActivity
80 mWallpaperId = getIntent().getStringExtra(EXTRA_WALLPAPER_ID); in onCreate()
82 if (mWallpaperId == null) { // Normal case in onCreate()
109 if (mWallpaperId != null) { in onCreate()
113 if (wallpaper.getWallpaperId().equals(mWallpaperId)) { in onCreate()
190 if (mWallpaperId != null && !isFinishing()) { in onActivityResult()