Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DGridView.java480 int rowStart; in fillSelection() local
484 rowStart = selectedPosition - (selectedPosition % numColumns); in fillSelection()
489 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillSelection()
493 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart); in fillSelection()
495 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection()
496 mFirstPosition = rowStart; in fillSelection()
501 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing); in fillSelection()
503 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing); in fillSelection()
507 fadingEdgeLength, numColumns, rowStart); in fillSelection()
510 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing); in fillSelection()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubblePositioner.java565 final float rowStart = getBubbleRowStart(state); in getExpandedBubbleXY() local
570 y = rowStart + positionInRow; in getExpandedBubbleXY()
582 x = rowStart + positionInRow; in getExpandedBubbleXY()
593 final float rowStart; in getBubbleRowStart() local
600 rowStart = expandedViewCenter - (expandedStackSize / 2f); in getBubbleRowStart()
605 rowStart = centerPosition - (expandedStackSize / 2f); in getBubbleRowStart()
607 return rowStart; in getBubbleRowStart()
/frameworks/base/core/java/android/view/
DFocusFinder.java856 int rowStart = start; in sort() local
862 if ((sweepIdx - rowStart) > 1) { in sort()
863 Arrays.sort(views, rowStart, sweepIdx, mSidesComparator); in sort()
866 rowStart = sweepIdx; in sort()
873 if ((sweepIdx - rowStart) > 1) { in sort()
874 Arrays.sort(views, rowStart, sweepIdx, mSidesComparator); in sort()