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

/frameworks/base/services/core/java/com/android/server/wm/
H A DStackWindowController.java53 final int mStackId; field in class:StackWindowController
72 mStackId = stackId;
107 throw new IllegalArgumentException("Trying to move unknown stackId=" + mStackId
113 throw new IllegalArgumentException("Trying to move stackId=" + mStackId
286 if (StackId.tasksAreFloating(mStackId)) {
289 if (mStackId == PINNED_STACK_ID && bounds.width() == mTmpDisplayBounds.width() &&
363 } else if (StackId.tasksAreFloating(mStackId)) {
381 return "{StackWindowController stackId=" + mStackId + "}";
H A DTaskStack.java69 final int mStackId; field in class:TaskStack
147 mStackId = stackId;
158 if (mStackId != HOME_STACK_ID) {
297 || !StackId.isResizeableByDockedStack(mStackId)
412 if (mStackId == PINNED_STACK_ID) {
446 switch (mStackId) {
556 if (currentStack != null && currentStack.mStackId != mStackId) {
558 + " to stackId=" + mStackId
559 + ", but it is already attached to stackId=" + task.mStack.mStackId);
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DActivityTestsBase.java316 private int mStackId = 0; field in class:ActivityTestsBase.ActivityStackBuilder
331 mStackId = id;
341 return createActivityStack(mService, mStackId, mDisplayId, mOnTop);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java118 private int mStackId; field in class:ActivityManagerShellCommand
274 mStackId = INVALID_STACK_ID;
312 mStackId = Integer.parseInt(getNextArgRequired());
399 if (mStackId != INVALID_STACK_ID) {
401 options.setLaunchStackId(mStackId);
H A DActivityStack.java339 final int mStackId; field in class:ActivityStack
457 mStackId = stackId;
460 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
465 mStackSupervisor.mStacks.put(mStackId, this);
470 return (T) new StackWindowController(mStackId, this, displayId, onTop, outBounds);
509 if (mStackId == DOCKED_STACK_ID) {
531 if (mStackId == DOCKED_STACK_ID) {
542 mStackSupervisor.mStacks.remove(mStackId);
821 return mStackId == HOME_STACK_ID;
825 return mStackId
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java242 int mStackId; field in class:DecorView
1505 if (StackId.hasWindowShadow(mStackId)) {
1896 if (mStackId != workspaceId) {
1897 mStackId = workspaceId;
1898 if (mDecorCaptionView == null && StackId.hasWindowDecor(mStackId)) {
1913 mDecorCaptionView.onConfigurationChanged(StackId.hasWindowDecor(mStackId));
1922 mStackId = getStackId();
1986 if (!mWindow.isFloating() && isApplication && StackId.hasWindowDecor(mStackId)) {
2273 if ((mStackId == FREEFORM_WORKSPACE_STACK_ID) && !isResizing()) {
2286 } else if (mStackId
[all...]

Completed in 236 milliseconds