Home
last modified time | relevance | path

Searched refs:attributions (Results 1 – 22 of 22) 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.java191 List<String> attributions = getAttributions(activity); in onCreate() local
192 if (attributions.size() > 0 && attributions.get(0) != null) { in onCreate()
193 activity.setTitle(attributions.get(0)); in onCreate()
263 List<String> attributions = getAttributions(context); in populateInfoPage() local
267 infoPage.populate(attributions, showMetadata, this::onSetWallpaperClicked, in populateInfoPage()
612 public void populate(List<String> attributions, boolean showMetadata, in populate() argument
616 if (attributions.size() > 0 && attributions.get(0) != null) { in populate()
617 mAttributionTitle.setText(attributions.get(0)); in populate()
621 if (attributions.size() > 1 && attributions.get(1) != null) { in populate()
623 mAttributionSubtitle1.setText(attributions.get(1)); in populate()
[all …]
DCategoryFragment.java544 List<String> attributions = mWallpaperInfo.getAttributions(appContext); in bindWallpaperText() local
545 if (!attributions.isEmpty()) { in bindWallpaperText()
546 mWallpaperTitle.setText(attributions.get(0)); in bindWallpaperText()
548 if (attributions.size() > 1) { in bindWallpaperText()
549 mWallpaperSubtitle.setText(attributions.get(1)); in bindWallpaperText()
553 if (attributions.size() > 2) { in bindWallpaperText()
554 mWallpaperSubtitle2.setText(attributions.get(2)); in bindWallpaperText()
713 List<String> attributions = homeWallpaper.getAttributions(appContext); in bindHomeWallpaper() local
714 if (!attributions.isEmpty()) { in bindHomeWallpaper()
715 mHomeWallpaperTitle.setText(attributions.get(0)); in bindHomeWallpaper()
[all …]
DTopLevelPickerActivity.java540 List<String> attributions = homeWallpaper.getAttributions(appContext); in refreshCurrentWallpapers()
541 if (attributions.size() > 0 && attributions.get(0) != null) { in refreshCurrentWallpapers()
542 mCurrentWallpaperTitle.setText(attributions.get(0)); in refreshCurrentWallpapers()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/
DDefaultWallpaperPreferences.java197 public void setHomeWallpaperAttributions(List<String> attributions) { in setHomeWallpaperAttributions() argument
199 if (attributions.size() > 0) { in setHomeWallpaperAttributions()
201 attributions.get(0)); in setHomeWallpaperAttributions()
203 if (attributions.size() > 1) { in setHomeWallpaperAttributions()
205 attributions.get(1)); in setHomeWallpaperAttributions()
207 if (attributions.size() > 2) { in setHomeWallpaperAttributions()
209 attributions.get(2)); in setHomeWallpaperAttributions()
375 public void setLockWallpaperAttributions(List<String> attributions) { in setLockWallpaperAttributions() argument
377 if (attributions.size() > 0) { in setLockWallpaperAttributions()
379 attributions.get(0)); in setLockWallpaperAttributions()
[all …]
DDefaultWallpaperPersister.java336 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument
339 return setWallpaperInRotationStatic(wallpaperBitmap, attributions, actionUrl, in setWallpaperInRotation()
349 public boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument
351 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in finalizeWallpaperForNextRotation()
360 private boolean setWallpaperInRotationStatic(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotationStatic() argument
368 return finalizeWallpaperForRotatingComponent(attributions, actionUrl, actionLabelRes, in setWallpaperInRotationStatic()
379 private boolean finalizeWallpaperForRotatingComponent(List<String> attributions, in finalizeWallpaperForRotatingComponent() argument
399 mWallpaperPreferences.setHomeWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent()
410 mWallpaperPreferences.setLockWallpaperAttributions(attributions); in finalizeWallpaperForRotatingComponent()
DDefaultWallpaperRefresher.java318 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()
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/tests/src/com/android/wallpaper/testing/
DTestWallpaperPersister.java118 public boolean setWallpaperInRotation(Bitmap wallpaperBitmap, List<String> attributions, in setWallpaperInRotation() argument
126 mHomeAttributions = attributions; in setWallpaperInRotation()
139 public boolean finalizeWallpaperForNextRotation(List<String> attributions, String actionUrl, in finalizeWallpaperForNextRotation() argument
141 mHomeAttributions = attributions; in finalizeWallpaperForNextRotation()
DTestWallpaperPreferences.java102 public void setHomeWallpaperAttributions(List<String> attributions) { in setHomeWallpaperAttributions() argument
103 mHomeScreenAttributions = attributions; in setHomeWallpaperAttributions()
221 public void setLockWallpaperAttributions(List<String> attributions) { in setLockWallpaperAttributions() argument
222 mLockScreenAttributions = attributions; in setLockWallpaperAttributions()
DTestCurrentWallpaperInfoFactory.java62 private static WallpaperInfo createTestWallpaperInfo(List<String> attributions, in createTestWallpaperInfo() argument
65 wallpaper.setAttributions(attributions); in createTestWallpaperInfo()
DTestWallpaperInfo.java99 public void setAttributions(List<String> attributions) { in setAttributions() argument
100 mAttributions = attributions; in setAttributions()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DLiveWallpaperInfo.java264 List<String> attributions = new ArrayList<>(); in getAttributions() local
267 attributions.add(labelCharSeq == null ? null : labelCharSeq.toString()); in getAttributions()
273 attributions.add(author); in getAttributions()
283 attributions.add(desc); in getAttributions()
289 return attributions; in getAttributions()
DWallpaperMetadata.java39 public WallpaperMetadata(List<String> attributions, String actionUrl, in WallpaperMetadata() argument
44 mAttributions = attributions; in WallpaperMetadata()
DCurrentWallpaperInfoVN.java73 public CurrentWallpaperInfoVN(List<String> attributions, String actionUrl, in CurrentWallpaperInfoVN() argument
77 mAttributions = attributions; in CurrentWallpaperInfoVN()
/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/tests/src/com/android/wallpaper/picker/
DPreviewActivityTest.java102 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/inputmethods/LatinIME/dictionaries/
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...