Searched refs:startOfRow (Results 1 – 2 of 2) sorted by relevance
76 int startOfRow = row * mNumColumns; in onMeasure() local77 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onMeasure()79 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()85 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()109 int startOfRow = row * mNumColumns; in onLayout() local110 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onLayout()111 for (int i = startOfRow; i < endOfRow; i++) { in onLayout()
1909 int startOfRow; in sequenceScroll() local1912 startOfRow = (selectedPosition / numColumns) * numColumns; in sequenceScroll()1913 endOfRow = Math.min(startOfRow + numColumns - 1, count - 1); in sequenceScroll()1917 startOfRow = Math.max(0, endOfRow - numColumns + 1); in sequenceScroll()1941 showScroll = selectedPosition == startOfRow; in sequenceScroll()