Searched defs:resizing (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DWindowManagerProxy.java178 public void setResizing(final boolean resizing) { argument
183 ActivityManager.getService().setSplitScreenResizing(resizing);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskWindowContainerController.java178 * Puts this task into docked drag resizing mode. See {@link DragResizeMode}.
180 * @param resizing Whether to put the task into drag resize mode.
182 public void setTaskDockedResizing(boolean resizing) { argument
188 mContainer.setDragResizing(resizing, DRAG_RESIZE_MODE_DOCKED_DIVIDER);
H A DDockedStackDividerController.java341 void setResizing(boolean resizing) { argument
342 if (mResizing != resizing) {
343 mResizing = resizing;
798 // We put all tasks into drag resizing mode - wait until all of them have completed the
799 // drag resizing switch.
H A DWindowManagerService.java6884 public void setDockedStackResizing(boolean resizing) { argument
6886 getDefaultDisplayContentLocked().getDockedDividerController().setResizing(resizing);
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java481 void setTaskDockedResizing(boolean resizing) { argument
482 mWindowContainerController.setTaskDockedResizing(resizing);
1530 * @return True if the requested bounds are okay for a resizing request.
H A DActivityStackSupervisor.java550 * Set of tasks that are in resizing mode during an app transition to fill the "void".
557 * will be ignored. Useful for the case where the caller is handling resizing of other stack and
2776 // Also disable docked stack resizing since we have manually adjusted the
2834 void setSplitScreenResizing(boolean resizing) { argument
2835 if (resizing == mDockedStackResizing) {
2839 mDockedStackResizing = resizing;
2840 mWindowManager.setDockedStackResizing(resizing);
2842 if (!resizing && mHasPendingDockedBounds) {
2891 // Don't allow re-entry while resizing. E.g. due to docked stack detaching.
2981 // We have finished the animation into PiP, and are resizing th
[all...]
H A DActivityManagerService.java11529 public void setSplitScreenResizing(boolean resizing) { argument
11534 mStackSupervisor.setSplitScreenResizing(resizing);
[all...]

Completed in 593 milliseconds