Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DGridView.java461 int rowEnd = -1; in fillSelection() local
468 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillSelection()
469 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillSelection()
475 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection()
492 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillSelection()
714 int rowEnd = -1; in fillFromSelection() local
721 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillFromSelection()
722 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillFromSelection()
732 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true); in fillFromSelection()
745 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillFromSelection()
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
DMultiSelectManager.java1660 int rowEnd = rowStart; in updateSelection() local
1663 rowEnd = i; in updateSelection()
1666 updateSelection(columnStart, columnEnd, rowStart, rowEnd); in updateSelection()