Home
last modified time | relevance | path

Searched refs:attributions (Results 1 – 18 of 18) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/
DAttributionFormatter.java40 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()
DPreviewFragment.java233 List<String> attributions = mWallpaper.getAttributions(activity); in onCreate() local
234 if (attributions.size() > 0 && attributions.get(0) != null) { in onCreate()
235 activity.setTitle(attributions.get(0)); in onCreate()
585 List<String> attributions = mWallpaper.getAttributions(context); in populateAttributionPane() local
586 if (attributions.size() > 0 && attributions.get(0) != null) { in populateAttributionPane()
587 mAttributionTitle.setText(attributions.get(0)); in populateAttributionPane()
590 if (attributions.size() > 1 && attributions.get(1) != null) { in populateAttributionPane()
592 mAttributionSubtitle1.setText(attributions.get(1)); in populateAttributionPane()
595 if (attributions.size() > 2 && attributions.get(2) != null) { in populateAttributionPane()
597 mAttributionSubtitle2.setText(attributions.get(2)); in populateAttributionPane()
DCategoryFragment.java542 List<String> attributions = mWallpaperInfo.getAttributions(appContext); in bindWallpaperText() local
543 if (!attributions.isEmpty()) { in bindWallpaperText()
544 mWallpaperTitle.setText(attributions.get(0)); in bindWallpaperText()
546 if (attributions.size() > 1) { in bindWallpaperText()
547 mWallpaperSubtitle.setText(attributions.get(1)); in bindWallpaperText()
551 if (attributions.size() > 2) { in bindWallpaperText()
552 mWallpaperSubtitle2.setText(attributions.get(2)); in bindWallpaperText()
711 List<String> attributions = homeWallpaper.getAttributions(appContext); in bindHomeWallpaper() local
712 if (!attributions.isEmpty()) { in bindHomeWallpaper()
713 mHomeWallpaperTitle.setText(attributions.get(0)); in bindHomeWallpaper()
[all …]
DTopLevelPickerActivity.java514 List<String> attributions = homeWallpaper.getAttributions(appContext); in refreshCurrentWallpapers()
515 if (attributions.size() > 0 && attributions.get(0) != null) { in refreshCurrentWallpapers()
516 mCurrentWallpaperTitle.setText(attributions.get(0)); in refreshCurrentWallpapers()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultWallpaperPreferences.java106 public void setHomeWallpaperAttributions(List<String> attributions) { in setHomeWallpaperAttributions() argument
108 if (attributions.size() > 0) { in setHomeWallpaperAttributions()
109 … editor.putString(WallpaperPreferenceKeys.KEY_HOME_WALLPAPER_ATTRIB_1, attributions.get(0)); in setHomeWallpaperAttributions()
111 if (attributions.size() > 1) { in setHomeWallpaperAttributions()
112 … editor.putString(WallpaperPreferenceKeys.KEY_HOME_WALLPAPER_ATTRIB_2, attributions.get(1)); in setHomeWallpaperAttributions()
114 if (attributions.size() > 2) { in setHomeWallpaperAttributions()
115 … editor.putString(WallpaperPreferenceKeys.KEY_HOME_WALLPAPER_ATTRIB_3, attributions.get(2)); in setHomeWallpaperAttributions()
269 public void setLockWallpaperAttributions(List<String> attributions) { in setLockWallpaperAttributions() argument
271 if (attributions.size() > 0) { in setLockWallpaperAttributions()
272 … editor.putString(WallpaperPreferenceKeys.KEY_LOCK_WALLPAPER_ATTRIB_1, attributions.get(0)); in setLockWallpaperAttributions()
[all …]
DDefaultWallpaperPersister.java340 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument
348 return setWallpaperInRotationStatic(wallpaperBitmap, attributions, actionUrl, in setWallpaperInRotation()
351 return setWallpaperInRotationLive(wallpaperBitmap, attributions, actionUrl, in setWallpaperInRotation()
377 public boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument
382 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in finalizeWallpaperForNextRotation()
390 private boolean setWallpaperInRotationStatic(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotationStatic() argument
399 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in setWallpaperInRotationStatic()
411 private boolean finalizeWallpaperForRotatingComponent(List<String> attributions, in finalizeWallpaperForRotatingComponent() argument
493 mWallpaperPreferences.setHomeWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent()
506 mWallpaperPreferences.setLockWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent()
[all …]
DDefaultWallpaperRefresher.java357 List<String> attributions = mWallpaperPreferences.getLockWallpaperAttributions(); in isLockScreenAttributionsEmpty() local
358 return attributions.get(0) == null in isLockScreenAttributionsEmpty()
359 && attributions.get(1) == null in isLockScreenAttributionsEmpty()
360 && attributions.get(2) == null; in isLockScreenAttributionsEmpty()
DWallpaperPersister.java85 boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument
111 boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument
DWallpaperPreferences.java58 void setHomeWallpaperAttributions(List<String> attributions); in setHomeWallpaperAttributions() argument
230 void setLockWallpaperAttributions(List<String> attributions); in setLockWallpaperAttributions() argument
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/
DIndividualHolder.java64 List<String> attributions = wallpaper.getAttributions(mActivity); in bindWallpaper() local
65 String firstAttribution = attributions.size() > 0 ? attributions.get(0) : null; in bindWallpaper()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DLiveWallpaperInfo.java259 List<String> attributions = new ArrayList<>(); in getAttributions() local
261 attributions.add(labelCharSeq == null ? null : labelCharSeq.toString()); in getAttributions()
267 attributions.add(author); in getAttributions()
273 return attributions; in getAttributions()
DWallpaperMetadata.java39 public WallpaperMetadata(List<String> attributions, String actionUrl, in WallpaperMetadata() argument
44 mAttributions = attributions; in WallpaperMetadata()
DCurrentWallpaperInfoV16.java62 public CurrentWallpaperInfoV16(List<String> attributions, String actionUrl, in CurrentWallpaperInfoV16() argument
65 mAttributions = attributions; in CurrentWallpaperInfoV16()
DCurrentWallpaperInfoVN.java76 public CurrentWallpaperInfoVN(List<String> attributions, String actionUrl, in CurrentWallpaperInfoVN() argument
80 mAttributions = attributions; in CurrentWallpaperInfoVN()
/packages/inputmethods/LatinIME/dictionaries/
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Den_US_wordlist.combined.gz
Den_GB_wordlist.combined.gz
Den_wordlist.combined.gz