Searched defs:ratings (Results 1 - 5 of 5) sorted by relevance

/packages/apps/TV/src/com/android/tv/parental/
H A DParentalControlSettings.java34 * The rating and all of its sub-ratings are blocked.
39 * The rating is blocked but not all of its sub-ratings are blocked.
73 // Ensure newly added system has ratings for current level set
76 // Ensure no ratings are blocked for the selected rating system
186 * Checks whether any of given ratings is blocked.
188 * @param ratings The array of ratings to check
191 public boolean isRatingBlocked(TvContentRating[] ratings) { argument
192 return getBlockedRating(ratings) != null;
196 * Checks whether any of given ratings i
201 getBlockedRating(TvContentRating[] ratings) argument
[all...]
H A DContentRatingSystem.java66 // Ordered list of main content ratings. UX should respect the order.
69 // Ordered list of sub content ratings. UX should respect the order.
72 // List of orders. This describes the automatic lock/unlock relationship between ratings.
143 * Returns true if the ratings is owned by this content rating system.
165 String displayName, List<Rating> ratings, List<SubRating> subRatings,
173 mRatings = ratings;
285 List<Rating> ratings = new ArrayList<>();
288 ratings.add(builder.build(subRatings));
294 for (Rating rating : ratings) {
309 orders.add(builder.build(ratings));
163 ContentRatingSystem( String name, String domain, String title, String description, List<String> countries, String displayName, List<Rating> ratings, List<SubRating> subRatings, List<Order> orders, boolean isCustom) argument
521 build(List<Rating> ratings) argument
[all...]
/packages/apps/TV/src/com/android/tv/search/
H A DDataManagerSearch.java271 private boolean isRatingBlocked(TvContentRating[] ratings) { argument
272 if (ratings == null || ratings.length == 0
276 for (TvContentRating rating : ratings) {
H A DTvProviderSearch.java408 private boolean isRatingBlocked(String ratings) { argument
409 if (TextUtils.isEmpty(ratings) || !mTvInputManager.isParentalControlsEnabled()) {
412 TvContentRating[] ratingArray = mTvContentRatingCache.getRatings(ratings);
/packages/apps/TV/src/com/android/tv/tuner/data/
H A DPsipData.java577 public ParentalRatingDescriptor(HashMap<String, Integer> ratings) { argument
578 mRatings = ratings;
592 return String.format("Parental rating descriptor, ratings:" + mRatings);
766 // Compares content ratings

Completed in 76 milliseconds