Home
last modified time | relevance | path

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

/packages/apps/TV/common/src/com/android/tv/common/recording/
DRecordedProgram.java268 public Builder setCanonicalGenres(String canonicalGenres) { in setCanonicalGenres() argument
269 if (TextUtils.isEmpty(canonicalGenres)) { in setCanonicalGenres()
273 return setCanonicalGenres(TvContract.Programs.Genres.decode(canonicalGenres)); in setCanonicalGenres()
276 private Builder setCanonicalGenres(String[] canonicalGenres) { in setCanonicalGenres() argument
277 mCanonicalGenres = canonicalGenres; in setCanonicalGenres()
488 String[] canonicalGenres, String shortDescription, String longDescription, in RecordedProgram() argument
505 mCanonicalGenres = canonicalGenres; in RecordedProgram()
/packages/apps/TV/src/com/android/tv/data/
DProgram.java448 String[] canonicalGenres = TvContract.Programs.Genres.decode(genres); in setCanonicalGenres() local
449 if (canonicalGenres.length > 0) { in setCanonicalGenres()
450 int[] temp = new int[canonicalGenres.length]; in setCanonicalGenres()
452 for (String canonicalGenre : canonicalGenres) { in setCanonicalGenres()
460 if (i < canonicalGenres.length) { in setCanonicalGenres()
/packages/apps/TV/usbtuner/src/com/android/usbtuner/data/
DPsipData.java290 public GenreDescriptor(String[] broadcastGenres, String[] canonicalGenres) { in GenreDescriptor() argument
292 mCanonicalGenres = canonicalGenres; in GenreDescriptor()
/packages/providers/TvProvider/src/com/android/providers/tv/
DTvProvider.java1023 String canonicalGenres = values.getAsString(Programs.COLUMN_CANONICAL_GENRE); in checkAndConvertGenre() local
1025 if (!TextUtils.isEmpty(canonicalGenres)) { in checkAndConvertGenre()
1027 String[] genres = Genres.decode(canonicalGenres); in checkAndConvertGenre()
1031 canonicalGenres = null; in checkAndConvertGenre()
1037 if (TextUtils.isEmpty(canonicalGenres)) { in checkAndConvertGenre()