Searched refs:layoutBounds (Results 1 – 3 of 3) sorted by relevance
193 Rect layoutBounds = layout.getBounds(); in updateMove() local194 if (mBounds.x2() > layoutBounds.x2()) { in updateMove()195 mBounds.x -= mBounds.x2() - layoutBounds.x2(); in updateMove()197 if (mBounds.y2() > layoutBounds.y2()) { in updateMove()198 mBounds.y -= mBounds.y2() - layoutBounds.y2(); in updateMove()200 if (mBounds.x < layoutBounds.x) { in updateMove()201 mBounds.x = layoutBounds.x; in updateMove()203 if (mBounds.y < layoutBounds.y) { in updateMove()204 mBounds.y = layoutBounds.y; in updateMove()
685 Rect layoutBounds = layout.getBounds(); in assignCellBoundsFromView() local693 int cellWidth = layoutBounds.w / CELL_COUNT; in assignCellBoundsFromView()694 int cellHeight = layoutBounds.h / CELL_COUNT; in assignCellBoundsFromView()705 int layoutBoundsX = layoutBounds.x; in assignCellBoundsFromView()706 int layoutBoundsY = layoutBounds.y; in assignCellBoundsFromView()728 Rect layoutBounds = layout.getBounds(); in assignCellBoundsFromBounds() local747 mLeft[0] = layoutBounds.x; in assignCellBoundsFromBounds()748 mLeft[actualColumnCount] = layoutBounds.x2(); in assignCellBoundsFromBounds()753 mTop[0] = layoutBounds.y; in assignCellBoundsFromBounds()754 mTop[actualRowCount] = layoutBounds.y2(); in assignCellBoundsFromBounds()[all …]
929 Rect layoutBounds = layout.getBounds();930 int remaining = (isVertical ? layoutBounds.h : layoutBounds.w) - resizeState.totalLength;