HomeSort by relevance Sort by last modified time
    Searched full:spanx (Results 1 - 13 of 13) sorted by null

  /packages/apps/Launcher2/res/xml/
default_workspace.xml 27 launcher:spanX="4"
42 launcher:spanX="4"
52 launcher:spanX="4"
61 launcher:spanX="2"
  /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...]
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++) {
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...]
LauncherSettings.java 161 static final String SPANX = "spanX";
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),
  /packages/apps/Launcher2/res/values/
attrs.xml 79 <attr name="spanX" format="string" />
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 184 float spanX = obj.getBoundsMaxX() - obj.getBoundsMinX();
187 float maxSpan = Math.max(spanX, spanY);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 184 db.execSQL("ALTER TABLE favorites ADD spanX INTEGER");
187 db.execSQL("UPDATE favorites SET spanX=1, spanY=1 WHERE itemType<=0");
190 "UPDATE favorites SET spanX=2, spanY=2 WHERE itemType=1000 or itemType=1002");
192 db.execSQL("UPDATE favorites SET spanX=4, spanY=1 WHERE itemType=1001");
    [all...]

Completed in 1808 milliseconds