Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/widget/
H A DRemoteCollectionItemsAdapter.java91 int[] layoutIds = IntStream.range(0, mItems.getItemCount()) in initLayoutIdToViewType() local
95 if (layoutIds.length > mViewTypeCount) { in initLayoutIdToViewType()
97 "Collection items uses " + layoutIds.length + " distinct layouts, which is " in initLayoutIdToViewType()
102 boolean[] processedLayoutIdIndices = new boolean[layoutIds.length]; in initLayoutIdToViewType()
107 for (int i = 0; i < layoutIds.length; i++) { in initLayoutIdToViewType()
108 int layoutId = layoutIds[i]; in initLayoutIdToViewType()
122 for (int i = 0; i < layoutIds.length; i++) { in initLayoutIdToViewType()
126 int layoutId = layoutIds[i]; in initLayoutIdToViewType()
130 int viewType = IntStream.range(lastViewType + 1, layoutIds.length) in initLayoutIdToViewType()