/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestUserEventLogger.java | 88 public void logActionClicked(String collectionId, int actionLabelResId) { in logActionClicked() argument 90 mLastCollectionId = collectionId; in logActionClicked() 102 public void logIndividualWallpaperSelected(String collectionId) { in logIndividualWallpaperSelected() argument 104 mLastCollectionId = collectionId; in logIndividualWallpaperSelected() 112 public void logCategorySelected(String collectionId) { in logCategorySelected() argument 114 mLastCollectionId = collectionId; in logCategorySelected() 122 public void logWallpaperSet(String collectionId, String wallpaperId) { in logWallpaperSet() argument 124 mLastCollectionId = collectionId; in logWallpaperSet()
|
D | TestWallpaperPreferences.java | 152 public void setHomeWallpaperCollectionId(String collectionId) { in setHomeWallpaperCollectionId() argument 153 mHomeCollectionId = collectionId; in setHomeWallpaperCollectionId() 261 public void setLockWallpaperCollectionId(String collectionId) { in setLockWallpaperCollectionId() argument 262 mLockCollectionId = collectionId; in setLockWallpaperCollectionId()
|
D | TestWallpaperCategory.java | 34 public TestWallpaperCategory(String title, String collectionId, List<WallpaperInfo> wallpapers, in TestWallpaperCategory() argument 36 super(title, collectionId, wallpapers, priority); in TestWallpaperCategory()
|
D | TestCurrentWallpaperInfoFactory.java | 63 String actionUrl, String collectionId) { in createTestWallpaperInfo() argument 67 wallpaper.setCollectionId(collectionId); in createTestWallpaperInfo()
|
D | TestCategoryProvider.java | 79 public Category getCategory(String collectionId) { in getCategory() argument 83 if (category.getCollectionId().equals(collectionId)) { in getCategory()
|
D | TestWallpaperInfo.java | 129 public void setCollectionId(String collectionId) { in setCollectionId() argument 130 mCollectionId = collectionId; in setCollectionId()
|
/packages/apps/ThemePicker/src/com/android/customization/module/ |
D | StatsLogUserEventLogger.java | 55 public void logActionClicked(String collectionId, int actionLabelResId) { in logActionClicked() argument 57 collectionId.hashCode(), 0, 0, 0); in logActionClicked() 61 public void logIndividualWallpaperSelected(String collectionId) { in logIndividualWallpaperSelected() argument 63 collectionId.hashCode(), 0, 0); in logIndividualWallpaperSelected() 67 public void logCategorySelected(String collectionId) { in logCategorySelected() argument 70 collectionId.hashCode(), in logCategorySelected() 75 public void logWallpaperSet(String collectionId, @Nullable String wallpaperId) { in logWallpaperSet() argument 78 collectionId.hashCode(), in logWallpaperSet()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | NoOpUserEventLogger.java | 48 public void logActionClicked(String collectionId, int actionLabelResId) { in logActionClicked() argument 52 public void logIndividualWallpaperSelected(String collectionId) { in logIndividualWallpaperSelected() argument 56 public void logCategorySelected(String collectionId) { in logCategorySelected() argument 60 public void logWallpaperSet(String collectionId, String wallpaperId) { in logWallpaperSet() argument
|
D | UserEventLogger.java | 57 void logActionClicked(String collectionId, int actionLabelResId); in logActionClicked() argument 59 void logIndividualWallpaperSelected(String collectionId); in logIndividualWallpaperSelected() argument 61 void logCategorySelected(String collectionId); in logCategorySelected() argument 63 void logWallpaperSet(String collectionId, String wallpaperId); in logWallpaperSet() argument
|
D | DefaultWallpaperPersister.java | 337 int actionLabelRes, int actionIconRes, String actionUrl, String collectionId) { in setWallpaperInRotation() argument 340 actionLabelRes, actionIconRes, collectionId); in setWallpaperInRotation() 350 int actionLabelRes, int actionIconRes, String collectionId, int wallpaperId) { in finalizeWallpaperForNextRotation() argument 352 actionIconRes, collectionId, wallpaperId); in finalizeWallpaperForNextRotation() 361 String actionUrl, int actionLabelRes, int actionIconRes, String collectionId) { in setWallpaperInRotationStatic() argument 369 actionIconRes, collectionId, wallpaperId); in setWallpaperInRotationStatic() 383 String collectionId, in finalizeWallpaperForRotatingComponent() argument 405 mWallpaperPreferences.setHomeWallpaperCollectionId(collectionId); in finalizeWallpaperForRotatingComponent() 414 mWallpaperPreferences.setLockWallpaperCollectionId(collectionId); in finalizeWallpaperForRotatingComponent()
|
D | WallpaperPersister.java | 87 String actionUrl, String collectionId); in setWallpaperInRotation() argument 113 String collectionId, int wallpaperId); in finalizeWallpaperForNextRotation() argument
|
D | WallpaperPreferences.java | 108 void setHomeWallpaperCollectionId(String collectionId); in setHomeWallpaperCollectionId() argument 207 void setLockWallpaperCollectionId(String collectionId); in setLockWallpaperCollectionId() argument
|
D | BaseWallpaperInjector.java | 161 public synchronized IndividualPickerFragment getIndividualPickerFragment(String collectionId) { in getIndividualPickerFragment() argument 162 return IndividualPickerFragment.newInstance(collectionId); in getIndividualPickerFragment()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
D | WallpaperCategory.java | 36 public WallpaperCategory(String title, String collectionId, List<WallpaperInfo> wallpapers, in WallpaperCategory() argument 38 this(title, collectionId, 0, wallpapers, priority); in WallpaperCategory() 41 public WallpaperCategory(String title, String collectionId, int featuredThumbnailIndex, in WallpaperCategory() argument 43 super(title, collectionId, priority); in WallpaperCategory()
|
D | ImageCategory.java | 43 public ImageCategory(String title, String collectionId, int priority) { in ImageCategory() argument 44 super(title, collectionId, priority); in ImageCategory() 48 public ImageCategory(String title, String collectionId, int priority, int overlayIconResId) { in ImageCategory() argument 49 super(title, collectionId, priority); in ImageCategory()
|
D | EmptyCategory.java | 34 public EmptyCategory(String title, String collectionId, int priority) { in EmptyCategory() argument 35 super(title, collectionId, priority); in EmptyCategory()
|
D | DesktopCustomCategory.java | 31 public DesktopCustomCategory(String title, String collectionId, in DesktopCustomCategory() argument 33 super(title, collectionId, wallpaperInfos, priority); in DesktopCustomCategory()
|
D | WallpaperMetadata.java | 41 @DrawableRes int actionIconRes, String collectionId, in WallpaperMetadata() argument 48 mCollectionId = collectionId; in WallpaperMetadata()
|
D | Category.java | 40 public Category(String title, String collectionId, int priority) { in Category() argument 42 mCollectionId = collectionId; in Category()
|
D | LiveWallpaperCategory.java | 31 public LiveWallpaperCategory(String title, String collectionId, List<WallpaperInfo> wallpapers, in LiveWallpaperCategory() argument 33 super(title, collectionId, wallpapers, priority); in LiveWallpaperCategory()
|
D | ThirdPartyAppCategory.java | 39 public ThirdPartyAppCategory(Context context, ResolveInfo resolveInfo, String collectionId, in ThirdPartyAppCategory() argument 43 collectionId, in ThirdPartyAppCategory() local
|
D | CurrentWallpaperInfoVN.java | 75 String collectionId, in CurrentWallpaperInfoVN() argument 82 mCollectionId = collectionId; in CurrentWallpaperInfoVN()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | WallpaperPickerDelegate.java | 322 public void show(String collectionId) { in show() argument 323 Category category = findCategoryForCollectionId(collectionId); in show() 331 public Category findCategoryForCollectionId(String collectionId) { in findCategoryForCollectionId() argument 332 return mCategoryProvider.getCategory(collectionId); in findCategoryForCollectionId()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/ |
D | DesktopRotationHolder.java | 93 public void bind(String collectionId) { in bind() argument 96 && collectionId.equals(mWallpaperPreferences.getHomeWallpaperCollectionId())) { in bind()
|
D | IndividualPickerFragment.java | 197 public static IndividualPickerFragment newInstance(String collectionId) { in newInstance() argument 199 args.putString(ARG_CATEGORY_COLLECTION_ID, collectionId); in newInstance() 1011 String collectionId = mCategory.getCollectionId(); 1012 ((DesktopRotationHolder) holder).bind(collectionId); 1016 … && collectionId.equals(mWallpaperPreferences.getHomeWallpaperCollectionId())) {
|