Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/util/
DTvSettings.java182 Set<String> contentRatingSystemSet = getContentRatingSystemSet(context); in addContentRatingSystems() local
183 if (contentRatingSystemSet.addAll(ids)) { in addContentRatingSystems()
185 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in addContentRatingSystems()
190 Set<String> contentRatingSystemSet = getContentRatingSystemSet(context); in addContentRatingSystem() local
191 if (contentRatingSystemSet.add(id)) { in addContentRatingSystem()
193 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in addContentRatingSystem()
198 Set<String> contentRatingSystemSet = getContentRatingSystemSet(context); in removeContentRatingSystems() local
199 if (contentRatingSystemSet.removeAll(ids)) { in removeContentRatingSystems()
201 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in removeContentRatingSystems()
206 Set<String> contentRatingSystemSet = getContentRatingSystemSet(context); in removeContentRatingSystem() local
[all …]