Home
last modified time | relevance | path

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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGrid.java278 public final int findRowMax(boolean findLarge, int[] indices) { in findRowMax() method in Grid
279 return findRowMax(findLarge, mReversedFlow ? mFirstVisibleIndex : mLastVisibleIndex, in findRowMax()
287 protected abstract int findRowMax(boolean findLarge, int indexLimit, int[] indices); in findRowMax() method in Grid
297 findRowMax(false, null) >= toLimit - mMargin; in checkAppendOverLimit()
307 return mReversedFlow ? findRowMax(false, null) >= toLimit + mMargin : in checkPrependOverLimit()
DStaggeredGridDefault.java103 public int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in StaggeredGridDefault
254 findRowMax(true, 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()
354 edgeLimit = mReversedFlow ? findRowMax(true, edgeLimitSearchIndex, null) : in prependVisibleItemsWithoutCache()
364 edgeLimit = mReversedFlow ? findRowMax(true, null) : in prependVisibleItemsWithoutCache()
423 edgeLimit = mReversedFlow ? findRowMax(true, null) : findRowMin(false, null); in prependVisibleItemsWithoutCache()
DSingleRow.java153 protected final int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in SingleRow
DGridLayoutManager.java1966 int maxEdge = mGrid.findRowMax(true, sTwoInts) + mScrollOffsetPrimary;