HomeSort by relevance Sort by last modified time
    Searched full:movies (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /device/sample/apps/LeanbackCustomizer/res/values/
strings.xml 15 <!-- Content description for Google Play Movies App -->
16 <string name="play_movies">Play Movies</string>
17 <!-- Content description for banner to encourage users to download Google Play Movies App -->
18 <string name="try_play_movies">Try Play Movies</string>
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/model/
MockDatabase.java 195 * Overrides the movies stored in {@link SharedPreferences} for a given subscription.
198 * @param channelId of the channel that the movies are associated with.
199 * @param movies to be stored.
201 public static void saveMovies(Context context, long channelId, List<Movie> movies) {
202 SharedPreferencesHelper.storeMovies(context, channelId, movies);
206 * Removes the list of movies associated with a channel. Overrides the current list with an
210 * @param channelId of the channel that the movies are associated with.
225 List<Movie> movies = getMovies(context, channelId); local
226 int index = findMovie(movies, movie);
228 movies.add(movie)
    [all...]
MockMovieService.java 26 /** Mocks gathering movies from an external source. */
68 * Creates and caches a list of movies.
70 * @return a list of movies.
80 * Shuffles the list of movies to make the returned list appear to be a different list from
83 * @return a list of movies in random order.
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/
SyncProgramsJobService.java 110 List<Movie> movies = new ArrayList<>(initialMovies); local
124 deletePrograms(channelId, movies);
127 if (movies.isEmpty()) {
128 movies = createPrograms(channelId, MockMovieService.getList());
130 movies = updatePrograms(channelId, movies);
132 MockDatabase.saveMovies(getApplicationContext(), channelId, movies); local
138 private List<Movie> createPrograms(long channelId, List<Movie> movies) {
140 List<Movie> moviesAdded = new ArrayList<>(movies.size());
141 for (Movie movie : movies) {
    [all...]
AppLinkActivity.java 76 // TODO: Open an activity that has the movies for the subscription.
  /packages/providers/TvProvider/res/values/
arrays.xml 22 <item>Movie|MOVIES</item>
27 <item>Action|MOVIES</item>
45 <item>Crime|MOVIES</item>
50 <item>Erotica|MOVIES</item>
52 <item>Fantasy|MOVIES</item>
70 <item>Horror|MOVIES</item>
85 <item>Mystery|MOVIES</item>
100 <item>Romance|MOVIES</item>
107 <item>Suspense|MOVIES</item>
125 <item>Classic Film|MOVIES</item
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
EnvironmentTest.java 41 File extStoragePublic = Environment.getExternalStoragePublicDirectory("Movies");
43 assertThat(extStoragePublic, equalTo( new File(ShadowContext.EXTERNAL_FILES_DIR, "Movies" ) ) );
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/util/
SharedPreferencesHelper.java 78 * @param channelId of the channel that the movies are associated with.
79 * @return a list of movies or an empty list if none exist.
86 * Overrides the movies stored in {@link SharedPreferences} for the associated channel id.
89 * @param channelId of the channel that the movies are associated with.
90 * @param movies to be stored.
92 public static void storeMovies(Context context, long channelId, List<Movie> movies) {
93 setList(context, movies, PREFS_SUBSCRIBED_MOVIES_PREFIX + channelId);
  /external/mp4parser/
README.android 12 but it is as well as dealing with structure like tracks and movies.
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VerticalGridFragment.java 57 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
59 for (Map.Entry<String, List<Movie>> entry : movies.entrySet())
LeanbackDetailsFragment.java 92 protected DetailsOverviewRow doInBackground(Movie... movies) {
93 selectedMovie = movies[0];
152 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
155 for (Map.Entry<String, List<Movie>> entry : movies.entrySet())
SearchFragment.java 88 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
90 for (Map.Entry<String, List<Movie>> entry : movies.entrySet())
  /developers/build/prebuilts/gradle/ScopedDirectoryAccess/Application/src/main/res/values/
strings.xml 28 <item>MOVIES</item>
  /developers/samples/android/content/documentsUi/ScopedDirectoryAccess/Application/src/main/res/values/
strings.xml 28 <item>MOVIES</item>
  /development/samples/browseable/ScopedDirectoryAccess/res/values/
strings.xml 28 <item>MOVIES</item>
  /platform_testing/libraries/app-helpers/common/src/android/platform/test/helpers/common/
AbstractPlayMoviesHelper.java 30 * This method will navigate to "My Library" and select the "My Movies" tab. This will block
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
VerticalGridFragment.java 71 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
73 for (Map.Entry<String, List<Movie>> entry : movies.entrySet()) {
MovieDetailsFragment.java 134 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
136 if (movies == null) {
139 for (Map.Entry<String, List<Movie>> entry : movies.entrySet()) {
241 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
244 for (Map.Entry<String, List<Movie>> entry : movies.entrySet()) {
SearchFragment.java 98 HashMap<String, List<Movie>> movies = VideoProvider.getMovieList(); local
100 for (Map.Entry<String, List<Movie>> entry : movies.entrySet()) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoDatabase.java 244 Log.d(TAG, "Loading movies...");
246 HashMap<String, List<Movie>> movies = null; local
249 movies = VideoProvider.buildMedia(mHelperContext,
255 for (Map.Entry<String, List<Movie>> entry : movies.entrySet()) {
264 // add dummy movies to illustrate action deep link in search detail
  /compatibility/cdd/2_device-types/
2_3_television-reqs.md 4 is an entertainment interface for consuming digital media, movies, games, apps,
  /packages/apps/TV/src/com/android/tv/data/
GenreItems.java 35 Genres.MOVIES,
  /external/python/cpython2/Doc/library/
undoc.rst 182 :mod:`videoreader` --- Read QuickTime movies
187 :synopsis: Read QuickTime movies frame by frame for further processing.
191 :mod:`videoreader` reads and decodes QuickTime movies and passes a stream of
  /frameworks/support/tv-provider/
lint-baseline.xml 72 message="Must be one of: Genres.FAMILY_KIDS, Genres.SPORTS, Genres.SHOPPING, Genres.MOVIES, Genres.COMEDY, Genres.TRAVEL, Genres.DRAMA, Genres.EDUCATION, Genres.ANIMAL_WILDLIFE, Genres.NEWS, Genres.GAMING, Genres.ARTS, Genres.ENTERTAINMENT, Genres.LIFE_STYLE, Genres.MUSIC, Genres.PREMIER, Genres.TECH_SCIENCE"
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
DeletionType.java 25 * This could represent a helper for deleting photos, downloads, movies, etc.

Completed in 683 milliseconds

1 2 3 4 5