/packages/apps/Launcher3/src/com/android/launcher3/testing/ |
D | TestInformationHandler.java | 186 final CellLayout cellLayout = workspace.getScreenWithId(screenId); in call() 187 return new int[]{cellLayout.getCountX(), cellLayout.getCountY()}; in call() 196 CellLayout cellLayout = (CellLayout) workspace.getPageAt( in call() 199 cellLayout, request.cellX, request.cellY, request.spanX, request.spanY); in call() 253 CellLayout cellLayout, int cellX, int cellY, int spanX, int spanY) { 257 cellLayout.cellToRect(cellX, cellY, spanX, spanY, target); 260 dragLayer.getDescendantCoordRelativeToSelf(cellLayout, leftTop); 261 dragLayer.getDescendantCoordRelativeToSelf(cellLayout, rightBottom);
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
D | UnfoldMoveFromCenterWorkspaceAnimator.java | 47 final CellLayout cellLayout = (CellLayout) page; in onPrepareViewsForAnimation() 48 ShortcutAndWidgetContainer itemsContainer = cellLayout in onPrepareViewsForAnimation() 50 setClipChildren(cellLayout, false); in onPrepareViewsForAnimation() 51 setClipToPadding(cellLayout, false); in onPrepareViewsForAnimation()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | AppWidgetResizeFrame.java | 184 public static void showForWidget(LauncherAppWidgetHostView widget, CellLayout cellLayout) { in showForWidget() argument 185 Launcher launcher = Launcher.getLauncher(cellLayout.getContext()); in showForWidget() 200 frame.setupForWidget(widget, cellLayout, dl); in showForWidget() 208 private void setupForWidget(LauncherAppWidgetHostView widgetView, CellLayout cellLayout, in setupForWidget() argument 210 mCellLayout = cellLayout; in setupForWidget() 225 InvariantDeviceProfile idp = LauncherAppState.getIDP(cellLayout.getContext()); in setupForWidget() 682 private void updateInvalidResizeEffect(CellLayout cellLayout, CellLayout pairedCellLayout, 684 updateInvalidResizeEffect(cellLayout, pairedCellLayout, alpha, 688 private void updateInvalidResizeEffect(CellLayout cellLayout, CellLayout pairedCellLayout, 703 ObjectAnimator.ofFloat(cellLayout, SPRING_LOADED_PROGRESS, [all …]
|
D | Workspace.java | 979 public CellLayout getScreenPair(CellLayout cellLayout) { in getScreenPair() argument 983 int screenId = getIdForScreen(cellLayout); in getScreenPair() 2090 final CellLayout cellLayout = getParentCellLayoutForView(cell); in onDrop() local 2091 boolean pageIsVisible = isVisible(cellLayout); in onDrop() 2095 (LauncherAppWidgetHostView) cell, cellLayout); in onDrop() 2151 LauncherAppWidgetHostView hostView, CellLayout cellLayout) { in getWidgetResizeFrameRunnable() argument 2157 AppWidgetResizeFrame.showForWidget(hostView, cellLayout); in getWidgetResizeFrameRunnable() 2690 private void onDropExternal(final int[] touchXY, final CellLayout cellLayout, DragObject d) { 2707 final int container = mLauncher.isHotseatLayout(cellLayout) 2710 final int screenId = getIdForScreen(cellLayout); [all …]
|
D | WorkspaceStateTransitionAnimation.java | 252 private void applyPageTranslation(CellLayout cellLayout, int childIndex, in applyPageTranslation() argument 258 propertySetter.setFloat(cellLayout, VIEW_TRANSLATE_X, pageTranslation, in applyPageTranslation()
|
D | Launcher.java | 1022 CellLayout cellLayout = mWorkspace.getScreenWithId( 1045 mWorkspace.animateWidgetDrop(requestArgs, cellLayout, 1527 CellLayout cellLayout = getCellLayout(launcherInfo.container, presenterPos.screenId); 1529 AppWidgetResizeFrame.showForWidget(launcherHostView, cellLayout); 1535 AppWidgetResizeFrame.showForWidget(launcherHostView, cellLayout);
|
/packages/apps/Launcher3/tests/src/com/android/launcher3/celllayout/ |
D | CellLayoutTestUtils.java | 31 for (CellLayout cellLayout : launcher.getWorkspace().mWorkspaceScreens) { in workspaceToBoards() 33 int count = cellLayout.getShortcutsAndWidgets().getChildCount(); in workspaceToBoards() 35 View callView = cellLayout.getShortcutsAndWidgets().getChildAt(i); in workspaceToBoards()
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | FolderAnimationManager.java | 269 CellLayout cellLayout = mContent.getCurrentCellLayout(); in getAnimator() local 274 boolean cellLayoutClipChildren = cellLayout.getClipChildren(); in getAnimator() 275 boolean cellLayoutClipPadding = cellLayout.getClipToPadding(); in getAnimator() 281 cellLayout.setClipChildren(false); in getAnimator() 282 cellLayout.setClipToPadding(false); in getAnimator() 302 cellLayout.setClipChildren(cellLayoutClipChildren); in getAnimator() 303 cellLayout.setClipToPadding(cellLayoutClipPadding); in getAnimator()
|
D | LauncherDelegate.java | 95 CellLayout cellLayout = mLauncher.getCellLayout(info.container, in replaceFolderWithFinalItem() 98 newIcon = mLauncher.createShortcut(cellLayout, finalItem); in replaceFolderWithFinalItem()
|
/packages/apps/Launcher3/src/com/android/launcher3/celllayout/ |
D | MulticellReorderAlgorithm.java | 34 public MulticellReorderAlgorithm(CellLayout cellLayout) { in MulticellReorderAlgorithm() argument 35 super(cellLayout); in MulticellReorderAlgorithm() 36 mSeam = new View(cellLayout.getContext()); in MulticellReorderAlgorithm()
|
D | ReorderAlgorithm.java | 32 public ReorderAlgorithm(CellLayout cellLayout) { in ReorderAlgorithm() argument 33 mCellLayout = cellLayout; in ReorderAlgorithm()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/hybridhotseat/ |
D | HotseatEduController.java | 158 CellLayout cellLayout = mLauncher.getWorkspace().getScreenWithId(Workspace.FIRST_SCREEN_ID); in showEdu() local 165 boolean canMigrateToFirstPage = cellLayout.makeSpaceForHotseatMigration(false); in showEdu()
|