Home
last modified time | relevance | path

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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGrid.java263 public final int findRowMin(boolean findLarge, int[] indices) { in findRowMin() method in Grid
264 return findRowMin(findLarge, mReversedFlow ? mLastVisibleIndex : mFirstVisibleIndex, in findRowMin()
272 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex); in findRowMin() method in Grid
296 return mReversedFlow ? findRowMin(true, null) <= toLimit + mMargin : in checkAppendOverLimit()
308 findRowMin(true, null) <= toLimit - mMargin; in checkPrependOverLimit()
DStaggeredGridDefault.java155 public int findRowMin(boolean findLarge, int indexLimit, int[] indices) { in findRowMin() method in StaggeredGridDefault
253 edgeLimit = mReversedFlow ? findRowMin(false, edgeLimitSearchIndex, null) : in appendVisibleItemsWithoutCache()
263 edgeLimit = mReversedFlow ? findRowMin(false, null) : findRowMax(true, null); in appendVisibleItemsWithoutCache()
321 edgeLimit = mReversedFlow ? findRowMin(false, null) : findRowMax(true, null); in appendVisibleItemsWithoutCache()
355 findRowMin(false, edgeLimitSearchIndex, null); in prependVisibleItemsWithoutCache()
365 findRowMin(false, null); in prependVisibleItemsWithoutCache()
423 edgeLimit = mReversedFlow ? findRowMax(true, null) : findRowMin(false, null); in prependVisibleItemsWithoutCache()
DSingleRow.java143 protected final int findRowMin(boolean findLarge, int indexLimit, int[] indices) { in findRowMin() method in SingleRow
DGridLayoutManager.java2143 int minEdge = mGrid.findRowMin(false, sTwoInts) + mScrollOffsetPrimary;