Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DGridView.java480 int rowEnd = -1; in fillSelection() local
487 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillSelection()
488 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillSelection()
494 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection()
511 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillSelection()
733 int rowEnd = -1; in fillFromSelection() local
740 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillFromSelection()
741 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillFromSelection()
751 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true); in fillFromSelection()
764 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillFromSelection()
[all …]