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 26 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE
132 + MARGIN_SIZE + bounds.x;
133 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE
134 + MARGIN_SIZE + bounds.y;
355 if (x1 < bounds.x + MARGIN_SIZE + max) {
356 int matchedLine = bounds.x + MARGIN_SIZE;
361 0, createCell, MARGIN_SIZE));
363 } else if (x2 > bounds.x2() - MARGIN_SIZE - max) {
364 int matchedLine = bounds.x2() - MARGIN_SIZE;
    [all...]
GridLayoutPainter.java 19 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
77 * {@link GridLayoutRule#MARGIN_SIZE} dimensions. These are the same lines that
90 int y1 = b.y + MARGIN_SIZE;
91 int y2 = b.y2() - MARGIN_SIZE;
93 int x1 = b.x + MARGIN_SIZE;
94 int x2 = b.x2() - MARGIN_SIZE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 94 public static final int MARGIN_SIZE = 32;

Completed in 68 milliseconds