/packages/apps/WallpaperPicker2/src/com/android/wallpaper/widget/ |
D | WallpaperInfoView.java | 58 final List<String> attributions = wallpaperInfo.getAttributions(getContext()); in populateWallpaperInfo() local 70 if (attributions.size() > 0 && attributions.get(0) != null) { in populateWallpaperInfo() 71 mTitle.setText(attributions.get(0)); in populateWallpaperInfo() 75 if (attributions.size() > 1 && attributions.get(1) != null) { in populateWallpaperInfo() 77 mSubtitle1.setText(attributions.get(1)); in populateWallpaperInfo() 80 if (attributions.size() > 2 && attributions.get(2) != null) { in populateWallpaperInfo() 82 mSubtitle2.setText(attributions.get(2)); in populateWallpaperInfo()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | AttributionFormatter.java | 40 List<String> attributions = wallpaper.getAttributions(context); in formatWallpaperSubtitle() local 42 if (attributions.size() > 1 && attributions.get(1) != null) { in formatWallpaperSubtitle() 43 subtitle += attributions.get(1); in formatWallpaperSubtitle() 45 if (attributions.size() > 2 && attributions.get(2) != null) { in formatWallpaperSubtitle() 46 subtitle += " • " + attributions.get(2); in formatWallpaperSubtitle()
|
D | PreviewFragment.java | 170 List<String> attributions = getAttributions(activity); in onCreate() local 171 if (attributions.size() > 0 && attributions.get(0) != null) { in onCreate() 172 activity.setTitle(attributions.get(0)); in onCreate()
|
D | TopLevelPickerActivity.java | 562 List<String> attributions = homeWallpaper.getAttributions(appContext); in refreshCurrentWallpapers() 563 if (attributions.size() > 0 && attributions.get(0) != null) { in refreshCurrentWallpapers() 564 mCurrentWallpaperTitle.setText(attributions.get(0)); in refreshCurrentWallpapers()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperPreferences.java | 206 public void setHomeWallpaperAttributions(List<String> attributions) { in setHomeWallpaperAttributions() argument 208 if (attributions.size() > 0) { in setHomeWallpaperAttributions() 210 attributions.get(0)); in setHomeWallpaperAttributions() 212 if (attributions.size() > 1) { in setHomeWallpaperAttributions() 214 attributions.get(1)); in setHomeWallpaperAttributions() 216 if (attributions.size() > 2) { in setHomeWallpaperAttributions() 218 attributions.get(2)); in setHomeWallpaperAttributions() 400 public void setLockWallpaperAttributions(List<String> attributions) { in setLockWallpaperAttributions() argument 402 if (attributions.size() > 0) { in setLockWallpaperAttributions() 404 attributions.get(0)); in setLockWallpaperAttributions() [all …]
|
D | DefaultWallpaperPersister.java | 335 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 338 return setWallpaperInRotationStatic(wallpaperBitmap, attributions, actionUrl, in setWallpaperInRotation() 348 public boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument 350 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in finalizeWallpaperForNextRotation() 359 private boolean setWallpaperInRotationStatic(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotationStatic() argument 367 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in setWallpaperInRotationStatic() 378 private boolean finalizeWallpaperForRotatingComponent(List<String> attributions, in finalizeWallpaperForRotatingComponent() argument 398 mWallpaperPreferences.setHomeWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent() 409 mWallpaperPreferences.setLockWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent()
|
D | DefaultWallpaperRefresher.java | 318 List<String> attributions = mWallpaperPreferences.getLockWallpaperAttributions(); in isLockScreenAttributionsEmpty() local 319 return attributions.get(0) == null in isLockScreenAttributionsEmpty() 320 && attributions.get(1) == null in isLockScreenAttributionsEmpty() 321 && attributions.get(2) == null; in isLockScreenAttributionsEmpty()
|
D | WallpaperPersister.java | 85 boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 111 boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument
|
D | WallpaperPreferences.java | 60 void setHomeWallpaperAttributions(List<String> attributions); in setHomeWallpaperAttributions() argument 242 void setLockWallpaperAttributions(List<String> attributions); in setLockWallpaperAttributions() argument
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestWallpaperPersister.java | 124 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument 132 mHomeAttributions = attributions; in setWallpaperInRotation() 145 public boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument 147 mHomeAttributions = attributions; in finalizeWallpaperForNextRotation()
|
D | TestWallpaperPreferences.java | 116 public void setHomeWallpaperAttributions(List<String> attributions) { in setHomeWallpaperAttributions() argument 117 mHomeScreenAttributions = attributions; in setHomeWallpaperAttributions() 247 public void setLockWallpaperAttributions(List<String> attributions) { in setLockWallpaperAttributions() argument 248 mLockScreenAttributions = attributions; in setLockWallpaperAttributions()
|
D | TestCurrentWallpaperInfoFactory.java | 62 private static WallpaperInfo createTestWallpaperInfo(List<String> attributions, in createTestWallpaperInfo() argument 65 wallpaper.setAttributions(attributions); in createTestWallpaperInfo()
|
D | TestWallpaperInfo.java | 100 public void setAttributions(List<String> attributions) { in setAttributions() argument 101 mAttributions = attributions; in setAttributions()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/ |
D | IndividualHolder.java | 65 List<String> attributions = wallpaper.getAttributions(mActivity); in bindWallpaper() local 66 String firstAttribution = attributions.size() > 0 ? attributions.get(0) : null; in bindWallpaper()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
D | LiveWallpaperInfo.java | 328 List<String> attributions = new ArrayList<>(); in getAttributions() local 331 attributions.add(labelCharSeq == null ? null : labelCharSeq.toString()); in getAttributions() 337 attributions.add(author); in getAttributions() 347 attributions.add(desc); in getAttributions() 353 return attributions; in getAttributions()
|
D | WallpaperMetadata.java | 39 public WallpaperMetadata(List<String> attributions, String actionUrl, in WallpaperMetadata() argument 44 mAttributions = attributions; in WallpaperMetadata()
|
D | CurrentWallpaperInfoVN.java | 73 public CurrentWallpaperInfoVN(List<String> attributions, String actionUrl, in CurrentWallpaperInfoVN() argument 77 mAttributions = attributions; in CurrentWallpaperInfoVN()
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/picker/ |
D | PreviewActivityTest.java | 102 List<String> attributions = new ArrayList<>(); in setUp() local 103 attributions.add("Title"); in setUp() 104 attributions.add("Subtitle 1"); in setUp() 105 attributions.add("Subtitle 2"); in setUp() 106 mMockWallpaper.setAttributions(attributions); in setUp()
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/ |
D | AppPermissionUsage.java | 371 Attribution[] attributions) { in getAttributionTagToLabelMap() argument 373 for (Attribution attribution : attributions) { in getAttributionTagToLabelMap() 383 getAttributionTagToLabelMap(getGroup().getApp().attributions); in getAttributionLabelledGroupUsages()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz |
|
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |