Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DMoveHandler.java193 Rect layoutBounds = layout.getBounds(); in updateMove() local
194 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()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridModel.java685 Rect layoutBounds = layout.getBounds(); in assignCellBoundsFromView() local
693 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() local
747 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 …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DLinearLayoutRule.java929 Rect layoutBounds = layout.getBounds();
930 int remaining = (isVertical ? layoutBounds.h : layoutBounds.w) - resizeState.totalLength;