HomeSort by relevance Sort by last modified time
    Searched refs:MARGIN_SIZE (Results 1 - 3 of 3) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 19 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
132 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE
133 + MARGIN_SIZE + bounds.x;
134 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE
135 + MARGIN_SIZE + bounds.y;
305 if (x1 < bounds.x + MARGIN_SIZE + max) {
306 int matchedLine = bounds.x + MARGIN_SIZE;
311 0, createCell, MARGIN_SIZE));
313 } else if (x2 > bounds.x2() - MARGIN_SIZE - max) {
314 int matchedLine = bounds.x2() - MARGIN_SIZE;
    [all...]
GridLayoutPainter.java 19 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
76 * {@link GridLayoutRule#MARGIN_SIZE} dimensions. These are the same lines that
89 int y1 = b.y + MARGIN_SIZE;
90 int y2 = b.y2() - MARGIN_SIZE;
92 int x1 = b.x + MARGIN_SIZE;
93 int x2 = b.x2() - MARGIN_SIZE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 88 public static final int MARGIN_SIZE = 32;

Completed in 130 milliseconds