HomeSort by relevance Sort by last modified time
    Searched defs:cellY (Results 1 - 17 of 17) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/util/
CellAndSpan.java 16 public int cellY = -1;
33 cellY = copy.cellY;
38 public CellAndSpan(int cellX, int cellY, int spanX, int spanY) {
40 this.cellY = cellY;
46 return "(" + cellX + ", " + cellY + ": " + spanX + ", " + spanY + ")";
  /packages/apps/Launcher2/
print_db.py 82 cellY = cell["cellY"]
201 cellY = row["cellY"]
204 for j in range(cellY, cellY+spanY):
207 screen[cellY][cellX] = row
  /packages/apps/Launcher3/
print_db.py 115 cellY = cell["cellY"]
264 cellY = row["cellY"]
267 for j in range(cellY, cellY+spanY):
270 screen[cellY][cellX] = row
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 72 public int cellY = -1;
124 cellY = info.cellY;
153 .put(LauncherSettings.Favorites.CELLY, cellY)
164 cellY = values.getAsInteger(LauncherSettings.Favorites.CELLY);
193 + " cell(" + cellX + "," + cellY + ")"
AppWidgetResizeFrame.java 258 int cellY = lp.useTmpCoords ? lp.tmpCellY : lp.cellY;
271 mTempRange1.set(cellY, spanY + cellY);
274 cellY = mTempRange2.start;
292 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
300 lp.tmpCellY = cellY;
CellLayout.java 617 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
720 * @param cellY Y coordinate of the cell
724 void cellToPoint(int cellX, int cellY, int[] result) {
729 result[1] = vStartPadding + cellY * mCellHeight;
736 * @param cellY Y coordinate of the cell
740 void cellToCenterPoint(int cellX, int cellY, int[] result) {
741 regionToCenterPoint(cellX, cellY, 1, 1, result);
748 * @param cellY Y coordinate of the cell
752 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DragAndDropAccessibilityDelegate.java 131 int cellY = id / mView.getCountX();
133 mView.cellToRect(cellX, cellY, dragInfo.info.spanX, dragInfo.info.spanY, mTempRect);
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 76 int cellY = -1;
127 cellY = info.cellY;
172 values.put(LauncherSettings.Favorites.CELLY, cellY);
180 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
182 values.put(LauncherSettings.Favorites.CELLY, cellY);
220 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + span
    [all...]
InstallShortcutReceiver.java 343 int cellX, cellY, spanX, spanY;
349 cellY = item.cellY;
353 for (int y = cellY; 0 <= y && y < cellY + spanY && y < yCount; y++) {
AppWidgetResizeFrame.java 259 int cellY = lp.useTmpCoords ? lp.tmpCellY : lp.cellY;
281 cellYInc = Math.max(-cellY, vSpanInc);
284 vSpanInc = Math.min(cellY, vSpanInc);
288 vSpanInc = Math.min(countY - (cellY + spanY), vSpanInc);
306 cellY += cellYInc;
324 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
327 lp.tmpCellY = cellY;
PagedViewCellLayout.java 108 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
399 public int cellY;
449 this.cellY = source.cellY;
454 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
457 this.cellY = cellY;
468 final int myCellY = cellY;
493 return "(" + this.cellX + ", " + this.cellY + ", "
    [all...]
CellLayout.java 636 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
740 cellInfo.cellY = lp.cellY;
757 cellInfo.cellY = cellXY[1];
790 cellInfo.cellY = -1;
836 * @param cellY Y coordinate of the cell
840 void cellToPoint(int cellX, int cellY, int[] result) {
845 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
852 * @param cellY Y coordinate of the cel
    [all...]
Launcher.java 342 int cellY;
626 args.cellY);
633 args.cellY);
707 args.cellY = mPendingAddInfo.cellY;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
ImportDataTask.java 139 "profileId = ? AND container = -100 AND screen = ? AND cellY = 0",
173 final int cellYIndex = c.getColumnIndexOrThrow(Favorites.CELLY);
194 int cellY = c.getInt(cellYIndex);
209 cellY++;
213 mMaxGridSizeY = Math.max(mMaxGridSizeY, cellY + spanY);
280 values.put(Favorites.CELLY, cellY);
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewBackground.java 330 private void delegateDrawing(CellLayout delegate, int cellX, int cellY) {
337 delegateCellY = cellY;
400 public void animateToAccept(final CellLayout cl, final int cellX, final int cellY) {
404 delegateDrawing(cl, cellX, cellY);
416 final int cellY = delegateCellY;
421 delegateDrawing(cl, cellX, cellY);
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 408 const int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
410 const float yf = ((float)y - (float)cellY*cellH + 0.5f) / cellH;
411 const Vec4 v00 = readVec4(vertices + ((cellY+0)*gridWidth + cellX+0)*numComponents, numComponents);
412 const Vec4 v01 = readVec4(vertices + ((cellY+1)*gridWidth + cellX+0)*numComponents, numComponents);
413 const Vec4 v10 = readVec4(vertices + ((cellY+0)*gridWidth + cellX+1)*numComponents, numComponents);
414 const Vec4 v11 = readVec4(vertices + ((cellY+1)*gridWidth + cellX+1)*numComponents, numComponents);
438 int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
439 IVec4 c = readIVec4(vertices + (cellY*gridWidth + cellX+1)*numComponents, numComponents);
    [all...]
  /prebuilts/tools/common/bazel/formc-deps/
jgoodies-forms.jar 

Completed in 297 milliseconds