Searched defs:contentRatings (Results 1 - 4 of 4) sorted by relevance
/packages/apps/TV/common/src/com/android/tv/common/ |
H A D | TvContentRatingCache.java | 84 List<TvContentRating> contentRatings = new ArrayList<>(); 87 contentRatings.add(TvContentRating.unflattenFromString(rating)); 92 return contentRatings.size() == 0 94 : contentRatings.toArray(new TvContentRating[contentRatings.size()]); 121 public static String contentRatingsToString(TvContentRating[] contentRatings) { argument 122 if (contentRatings == null || contentRatings.length == 0) { 125 String[] ratingStrings = new String[contentRatings.length]; 126 for (int i = 0; i < contentRatings [all...] |
/packages/apps/TV/tests/common/src/com/android/tv/testing/data/ |
H A D | ProgramInfo.java | 103 public final TvContentRating[] contentRatings; field in class:ProgramInfo 132 TvContentRating[] contentRatings, 142 this.contentRatings = contentRatings; 218 contentRatings, 251 && Arrays.equals(contentRatings, that.contentRatings) 307 public Builder setContentRatings(TvContentRating[] contentRatings) { argument 308 mContentRatings = contentRatings; 124 ProgramInfo( String title, String episode, int seasonNumber, int episodeNumber, String posterArtUri, String description, long durationMs, TvContentRating[] contentRatings, String genre, String resourceUri) argument
|
/packages/apps/TV/src/com/android/tv/data/ |
H A D | Program.java | 452 .append(", contentRatings=") 771 * @param contentRatings the content ratings 774 public Builder setContentRatings(TvContentRating[] contentRatings) { argument 775 mProgram.mContentRatings = contentRatings;
|
/packages/apps/TV/src/com/android/tv/dvr/data/ |
H A D | RecordedProgram.java | 339 public Builder setContentRatings(TvContentRating[] contentRatings) { argument 340 mContentRatings = contentRatings; 564 TvContentRating[] contentRatings, 597 mContentRatings = contentRatings; 544 RecordedProgram( long id, String packageName, String inputId, long channelId, String title, String seriesId, String seasonNumber, String seasonTitle, String episodeNumber, String episodeTitle, long startTimeUtcMillis, long endTimeUtcMillis, String[] broadcastGenres, String[] canonicalGenres, String shortDescription, String longDescription, int videoWidth, int videoHeight, String audioLanguage, TvContentRating[] contentRatings, String posterArtUri, String thumbnailUri, boolean searchable, Uri dataUri, long dataBytes, long durationMillis, long expireTimeUtcMillis, int internalProviderFlag1, int internalProviderFlag2, int internalProviderFlag3, int internalProviderFlag4, int versionNumber) argument
|
Completed in 121 milliseconds