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

  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 72 int spanX = 1;
91 spanX = info.spanX;
110 values.put(LauncherSettings.Favorites.SPANX, spanX);
CellLayout.java 183 cellInfo.spanX = lp.cellHSpan;
209 cellInfo.spanX = 1;
226 cellInfo.spanX = 0;
314 cell.spanX = current.right - current.left + 1;
316 if (cell.spanX > cellInfo.maxVacantSpanX) {
317 cellInfo.maxVacantSpanX = cell.spanX;
322 cellInfo.maxVacantSpanYSpanX = cell.spanX;
367 cellInfo.spanX = 0;
602 * @param spanX Horizontal span of the object.
609 int[] findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY
    [all...]
Workspace.java 311 * the child are defined by x, y, spanX and spanY.
316 * @param spanX The number of cells spanned horizontally by the child.
319 void addInCurrentScreen(View child, int x, int y, int spanX, int spanY) {
320 addInScreen(child, mCurrentScreen, x, y, spanX, spanY, false);
325 * the child are defined by x, y, spanX and spanY.
330 * @param spanX The number of cells spanned horizontally by the child.
334 void addInCurrentScreen(View child, int x, int y, int spanX, int spanY, boolean insert) {
335 addInScreen(child, mCurrentScreen, x, y, spanX, spanY, insert);
340 * the child are defined by x, y, spanX and spanY.
346 * @param spanX The number of cells spanned horizontally by the child
    [all...]
InstallShortcutReceiver.java 95 LauncherSettings.Favorites.SPANX, LauncherSettings.Favorites.SPANY },
101 final int spanXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANX);
108 int spanX = c.getInt(spanXIndex);
111 for (int x = cellX; x < cellX + spanX && x < xCount; x++) {
LauncherProvider.java 219 "spanX INTEGER," +
584 values.put(LauncherSettings.Favorites.SPANX, 4);
587 values.put(LauncherSettings.Favorites.SPANX, 2);
713 values.put(Favorites.SPANX, 1);
    [all...]
Launcher.java 703 addItemCellInfo.spanX = savedState.getInt(RUNTIME_STATE_PENDING_ADD_SPAN_X);
    [all...]
LauncherModel.java 600 for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
612 for (int x = item.cellX; x < (item.cellX+item.spanX); x++) {
666 (LauncherSettings.Favorites.SPANX);
    [all...]
  /packages/apps/Launcher2/
print_db.py 140 spanX = row["spanX"]
143 for k in range(cellX, cellX+spanX):
161 spanX = cell["spanX"]
170 spanX, spanY,
171 (CELL_SIZE*spanX), (CELL_SIZE*spanY),
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 184 float spanX = obj.getBoundsMaxX() - obj.getBoundsMinX();
187 float maxSpan = Math.max(spanX, spanY);

Completed in 355 milliseconds