Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridDropHandler.java26 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE in computeMatches()
132 + MARGIN_SIZE + bounds.x; in computeMatches()
133 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE in computeMatches()
134 + MARGIN_SIZE + bounds.y; in computeMatches()
355 if (x1 < bounds.x + MARGIN_SIZE + max) { in addColumnGapMatch()
356 int matchedLine = bounds.x + MARGIN_SIZE; in addColumnGapMatch()
361 0, createCell, MARGIN_SIZE)); in addColumnGapMatch()
363 } else if (x2 > bounds.x2() - MARGIN_SIZE - max) { in addColumnGapMatch()
364 int matchedLine = bounds.x2() - MARGIN_SIZE; in addColumnGapMatch()
[all …]
DGridLayoutPainter.java19 import static com.android.ide.common.layout.GridLayoutRule.MARGIN_SIZE;
90 int y1 = b.y + MARGIN_SIZE; in paintGrid()
91 int y2 = b.y2() - MARGIN_SIZE; in paintGrid()
93 int x1 = b.x + MARGIN_SIZE; in paintGrid()
94 int x2 = b.x2() - MARGIN_SIZE; in paintGrid()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DGridLayoutRule.java94 public static final int MARGIN_SIZE = 32; field in GridLayoutRule