HomeSort by relevance Sort by last modified time
    Searched refs:cellX (Results 26 - 43 of 43) sorted by null

12

  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 341 int cellX;
625 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
632 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
706 args.cellX = mPendingAddInfo.cellX;
    [all...]
ShortcutInfo.java 154 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX + " spanY=" + spanY
Workspace.java 553 lp.cellX = x;
570 Log.w(TAG, "Failed to add to item at (" + lp.cellX + "," + lp.cellY + ") to CellLayout");
    [all...]
FocusHelper.java 581 int lvIndex = (llp.cellY * cellCountX) + llp.cellX;
582 int rvIndex = (rlp.cellY * cellCountX) + rlp.cellX;
641 float tmpDistance = (float) Math.sqrt(Math.pow(tmpLp.cellX - lp.cellX, 2) +
    [all...]
FolderIcon.java 312 mFolderRingAnimator.setCell(lp.cellX, lp.cellY);
361 item.cellX = -1;
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java 180 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
235 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
255 hotseatParent.getChildAt(i).getLayoutParams()).cellX;
293 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
Folder.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
ImportDataTask.java 172 final int cellXIndex = c.getColumnIndexOrThrow(Favorites.CELLX);
193 int cellX = c.getInt(cellXIndex);
212 mMaxGridSizeX = Math.max(mMaxGridSizeX, cellX + spanX);
279 values.put(Favorites.CELLX, cellX);
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 407 const int cellX = de::clamp(deFloorFloatToInt32((float)x / cellW), 0, gridWidth-2);
409 const float xf = ((float)x - (float)cellX*cellW + 0.5f) / cellW;
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);
437 int cellX = de::clamp(deFloorFloatToInt32((float)x / cellW), 0, gridWidth-2);
439 IVec4 c = readIVec4(vertices + (cellY*gridWidth + cellX+1)*numComponents, numComponents);
    [all...]
  /packages/apps/Launcher3/tests/src/com/android/launcher3/
BindWidgetTest.java 268 item.cellX = 0;
324 item.cellX = 0;
  /external/deqp/modules/gles31/functional/
es31fPrimitiveBoundingBoxTests.cpp     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java     [all...]
Hotseat.java 176 target.gridX = info.cellX;
Launcher.java 675 completeAddShortcut(intent, info.container, screenId, info.cellX, info.cellY, info);
    [all...]
FocusHelper.java 226 .getChildAt(iconIndex).getLayoutParams()).cellX;
  /external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp     [all...]
  /external/opencv3/modules/objdetect/src/
hog.cpp 665 float cellX = (j+0.5f)/cellSize.width - 0.5f;
667 int icellX0 = cvFloor(cellX);
670 cellX -= icellX0;
681 data->histWeights[0] = (1.f - cellX)*(1.f - cellY);
683 data->histWeights[1] = cellX*(1.f - cellY);
685 data->histWeights[2] = (1.f - cellX)*cellY;
687 data->histWeights[3] = cellX*cellY;
698 data->histWeights[0] = (1.f - cellX)*cellY;
700 data->histWeights[1] = cellX*cellY;
710 cellX = 1.f - cellX
    [all...]
  /external/deqp/modules/gles2/functional/
es2fFboRenderTest.cpp     [all...]

Completed in 317 milliseconds

12