Home | History | Annotate | Download | only in widget

Lines Matching defs:rowEnd

461         int rowEnd = -1;
468 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
469 rowStart = Math.max(0, rowEnd - numColumns + 1);
475 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
492 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
714 int rowEnd = -1;
721 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
722 rowStart = Math.max(0, rowEnd - numColumns + 1);
732 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
745 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
887 int rowEnd = -1;
896 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
897 rowStart = Math.max(0, rowEnd - numColumns + 1);
924 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldBottom + verticalSpacing, true);
935 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop - verticalSpacing, false);
946 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop, true);
955 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
1995 int rowEnd;
1999 rowEnd = Math.max(rowStart + mNumColumns - 1, count);
2001 rowEnd = count - 1 - (invertedIndex - (invertedIndex % mNumColumns));
2002 rowStart = Math.max(0, rowEnd - mNumColumns + 1);
2015 return childIndex == rowEnd;
2018 return rowEnd == count - 1;
2024 return childIndex == rowEnd && rowEnd == count - 1;