Searched defs:spanY (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DItemInfo.java77 int spanY = 1; field in class:ItemInfo
97 spanY = info.spanY;
116 values.put(LauncherSettings.Favorites.SPANY, spanY);
161 + " spanY=" + spanY + " isGesture=" + isGesture + " dropPos=" + dropPos + ")";
H A DLauncherProvider.java251 "spanY INTEGER," +
949 int spanY = a.getInt(R.styleable.Favorite_spanY, 0);
950 return addAppWidget(db, values, cn, spanX, spanY);
957 int spanX, int spanY) {
966 values.put(Favorites.SPANY, spanY);
956 addAppWidget(SQLiteDatabase db, ContentValues values, ComponentName cn, int spanX, int spanY) argument
H A DCellLayout.java672 cellInfo.spanY = lp.cellVSpan;
689 cellInfo.spanY = 1;
721 cellInfo.spanY = 0;
1029 * @param spanY The number of vertical cells that the item spans
1032 void estimateDropCell(int originX, int originY, int spanX, int spanY, int[] result) { argument
1046 int bottomOverhang = result[1] + spanY - countY;
1054 int spanX, int spanY, Point dragOffset, Rect dragRegion) {
1058 final int[] nearest = findNearestVacantArea(originX, originY, spanX, spanY, v, mDragCell);
1105 top += ((mCellHeight * spanY) + ((spanY
1053 visualizeDropLocation(View v, Bitmap dragOutline, int originX, int originY, int spanX, int spanY, Point dragOffset, Rect dragRegion) argument
1145 findNearestVacantArea( int pixelX, int pixelY, int spanX, int spanY, int[] result) argument
1164 findNearestArea(int pixelX, int pixelY, int spanX, int spanY, View ignoreView, boolean ignoreOccupied, int[] result) argument
1234 findNearestVacantArea( int pixelX, int pixelY, int spanX, int spanY, View ignoreView, int[] result) argument
1252 findNearestArea( int pixelX, int pixelY, int spanX, int spanY, int[] result) argument
1274 findCellForSpan(int[] cellXY, int spanX, int spanY) argument
1288 findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) argument
1304 findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY) argument
1313 findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY, View ignoreView) argument
1526 getVacantCell(int[] vacant, int spanX, int spanY) argument
1531 findVacantCell(int[] vacant, int spanX, int spanY, int xCount, int yCount, boolean[][] occupied) argument
1631 markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean value) argument
1815 int spanY; field in class:CellLayout.CellInfo
[all...]
H A DLauncherModel.java278 * Resize an item in the DB to a new <spanX, spanY, cellX, cellY>
281 final int cellY, final int spanX, final int spanY) {
283 item.spanY = spanY;
290 values.put(LauncherSettings.Favorites.SPANY, spanY);
351 item.spanY = c.getInt(spanYIndex);
476 long container, int screen, int localCellX, int localCellY, int spanX, int spanY) {
945 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
957 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
1146 appWidgetInfo.spanY
280 resizeItemInDatabase(Context context, final ItemInfo item, final int cellX, final int cellY, final int spanX, final int spanY) argument
475 getCellLayoutChildId( long container, int screen, int localCellX, int localCellY, int spanX, int spanY) argument
[all...]
H A DWorkspace.java461 * the child are defined by x, y, spanX and spanY.
468 * @param spanY The number of cells spanned vertically by the child.
470 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) { argument
471 addInScreen(child, container, screen, x, y, spanX, spanY, false);
476 * the child are defined by x, y, spanX and spanY.
483 * @param spanY The number of cells spanned vertically by the child.
486 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY, argument
526 lp = new CellLayout.LayoutParams(x, y, spanX, spanY);
531 lp.cellVSpan = spanY;
534 if (spanX < 0 && spanY <
3111 findNearestVacantArea(int pixelX, int pixelY, int spanX, int spanY, View ignoreView, CellLayout layout, int[] recycle) argument
3122 findNearestArea(int pixelX, int pixelY, int spanX, int spanY, CellLayout layout, int[] recycle) argument
[all...]
/packages/apps/Launcher2/
H A Dprint_db.py84 spanY = cell["spanY"]
92 spanX, spanY,
93 (CELL_SIZE*spanX), (CELL_SIZE*spanY),
203 spanY = row["spanY"] variable
204 for j in range(cellY, cellY+spanY):

Completed in 114 milliseconds