Searched refs:startOfRow (Results 1 – 2 of 2) sorted by relevance
86 int startOfRow = row * mNumColumns; in onMeasure() local87 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onMeasure()89 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()95 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()119 int startOfRow = row * mNumColumns; in onLayout() local120 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onLayout()121 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()