Searched refs:findRowMax (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | Grid.java | 278 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()
|
D | StaggeredGridDefault.java | 103 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()
|
D | SingleRow.java | 153 protected final int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in SingleRow
|
D | GridLayoutManager.java | 1966 int maxEdge = mGrid.findRowMax(true, sTwoInts) + mScrollOffsetPrimary;
|