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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 25 import static com.android.ide.common.layout.GridLayoutRule.GRID_SIZE;
131 x1 = ((x1 - MARGIN_SIZE - bounds.x) / GRID_SIZE) * GRID_SIZE
133 y1 = ((y1 - MARGIN_SIZE - bounds.y) / GRID_SIZE) * GRID_SIZE
    [all...]
GridLayoutPainter.java 18 import static com.android.ide.common.layout.GridLayoutRule.GRID_SIZE;
76 * Paints a regular grid according to the {@link GridLayoutRule#GRID_SIZE} and
92 for (int y = y1; y < y2; y += GRID_SIZE) {
95 for (int x = x1; x < x2; x += GRID_SIZE) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 155 private static final int GRID_SIZE = GRID_WIDTH * GRID_HEIGHT;
704 mGridNeighbors = new int[GRID_SIZE][];
740 if (index < GRID_SIZE) {
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 139 private static final int GRID_SIZE = GRID_WIDTH * GRID_HEIGHT;
728 mGridNeighbors = new int[GRID_SIZE][];
763 if (index < GRID_SIZE) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 86 public static final int GRID_SIZE = 16;

Completed in 162 milliseconds