Home
last modified time | relevance | path

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

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DStaggeredGridDefault.java231 int edgeLimit; in appendVisibleItemsWithoutCache() local
245 edgeLimit = Integer.MIN_VALUE; in appendVisibleItemsWithoutCache()
247 edgeLimit = mReversedFlow ? getRowMin(i) : getRowMax(i); in appendVisibleItemsWithoutCache()
248 if (edgeLimit != Integer.MIN_VALUE) { in appendVisibleItemsWithoutCache()
253 edgeLimit = mReversedFlow ? findRowMin(false, edgeLimitSearchIndex, null) : in appendVisibleItemsWithoutCache()
256 if (mReversedFlow ? getRowMin(rowIndex) <= edgeLimit in appendVisibleItemsWithoutCache()
257 : getRowMax(rowIndex) >= edgeLimit) { in appendVisibleItemsWithoutCache()
263 edgeLimit = mReversedFlow ? findRowMin(false, null) : findRowMax(true, null); in appendVisibleItemsWithoutCache()
272 edgeLimit = 0; in appendVisibleItemsWithoutCache()
305 while (mReversedFlow ? location - size > edgeLimit : in appendVisibleItemsWithoutCache()
[all …]