Home
last modified time | relevance | path

Searched refs:GRID_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.java25 import static com.android.ide.common.layout.GridLayoutRule.GRID_SIZE;
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE in computeMatches()
133 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE in computeMatches()
DGridLayoutPainter.java18 import static com.android.ide.common.layout.GridLayoutRule.GRID_SIZE;
92 for (int y = y1; y < y2; y += GRID_SIZE) { in paintGrid()
95 for (int x = x1; x < x2; x += GRID_SIZE) { in paintGrid()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DGridLayoutRule.java86 public static final int GRID_SIZE = 16; field in GridLayoutRule