Home
last modified time | relevance | path

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

/frameworks/support/media-compat/api21/android/support/v4/media/
DParceledListSliceAdapterApi21.java41 static Object newInstance(List<MediaBrowser.MediaItem> itemList) { in newInstance() argument
44 result = sConstructor.newInstance(itemList); in newInstance()
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
DSortedListTest.java516 Collection<Item> itemList = new ArrayList<Item>(); in testAddAllCollection() local
518 itemList.add(new Item(i)); in testAddAllCollection()
520 mList.addAll(itemList); in testAddAllCollection()
523 assertTrue(mAdditions.contains(new Pair(0, itemList.size()))); in testAddAllCollection()
524 assertIntegrity(itemList.size(), "addAll on collection"); in testAddAllCollection()
/frameworks/support/media-compat/java/android/support/v4/media/
DMediaBrowserCompat.java487 public static List<MediaItem> fromMediaItemList(List<?> itemList) { in fromMediaItemList() argument
488 if (itemList == null || Build.VERSION.SDK_INT < 21) { in fromMediaItemList()
491 List<MediaItem> items = new ArrayList<>(itemList.size()); in fromMediaItemList()
492 for (Object itemObj : itemList) { in fromMediaItemList()
757 List<MediaBrowserCompat.MediaItem> itemList = in onChildrenLoaded() local
764 SubscriptionCallback.this.onChildrenLoaded(parentId, itemList); in onChildrenLoaded()
767 parentId, applyOptions(itemList, options), options); in onChildrenLoaded()
/frameworks/support/media-compat/java/android/support/v4/media/session/
DMediaSessionCompat.java1690 public static List<QueueItem> fromQueueItemList(List<?> itemList) { in fromQueueItemList() argument
1691 if (itemList == null || Build.VERSION.SDK_INT < 21) { in fromQueueItemList()
1695 for (Object itemObj : itemList) { in fromQueueItemList()