Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/widget/
DWallpaperInfoView.java58 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/
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.java170 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()
DTopLevelPickerActivity.java562 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/
DDefaultWallpaperPreferences.java206 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 …]
DDefaultWallpaperPersister.java335 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()
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.java60 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/
DTestWallpaperPersister.java124 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()
DTestWallpaperPreferences.java116 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()
DTestCurrentWallpaperInfoFactory.java62 private static WallpaperInfo createTestWallpaperInfo(List<String> attributions, in createTestWallpaperInfo() argument
65 wallpaper.setAttributions(attributions); in createTestWallpaperInfo()
DTestWallpaperInfo.java100 public void setAttributions(List<String> attributions) { in setAttributions() argument
101 mAttributions = attributions; in setAttributions()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/
DIndividualHolder.java65 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/
DLiveWallpaperInfo.java328 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()
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/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/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/
DAppPermissionUsage.java371 Attribution[] attributions) { in getAttributionTagToLabelMap() argument
373 for (Attribution attribution : attributions) { in getAttributionTagToLabelMap()
383 getAttributionTagToLabelMap(getGroup().getApp().attributions); in getAttributionLabelledGroupUsages()
/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.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...