Searched refs:StackBox (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/java/com/android/server/wm/ |
D | StackBox.java | 28 public class StackBox { class 59 StackBox mParent; 62 StackBox mFirst; 65 StackBox mSecond; 88 StackBox(WindowManagerService service, DisplayContent displayContent, StackBox parent) { in StackBox() method in StackBox 89 synchronized (StackBox.class) { in StackBox() 223 mFirst = new StackBox(mService, mDisplayContent, this); in split() 227 mSecond = new StackBox(mService, mDisplayContent, this); in split() 255 StackBox sibling = isFirstChild() ? mParent.mSecond : mParent.mFirst; in remove() 256 StackBox grandparent = mParent.mParent; in remove()
|
D | DisplayContent.java | 97 private ArrayList<StackBox> mStackBoxes = new ArrayList<StackBox>(); 127 StackBox newBox = new StackBox(service, this, null); in DisplayContent() 243 final StackBox box = mStackBoxes.get(stackBoxNdx); in createStack() 244 if (position == StackBox.TASK_STACK_GOES_OVER in createStack() 245 || position == StackBox.TASK_STACK_GOES_UNDER) { in createStack() 248 StackBox newBox = new StackBox(mService, this, null); in createStack() 252 final int offset = position == StackBox.TASK_STACK_GOES_OVER ? 1 : 0; in createStack() 282 final StackBox box = mStackBoxes.get(stackBoxNdx); in resizeStack() 291 void addStackBox(StackBox box, boolean toTop) { in addStackBox() 298 void removeStackBox(StackBox box) { in removeStackBox() [all …]
|
D | TaskStack.java | 53 StackBox mStackBox;
|
D | WindowManagerService.java | 3793 final StackBox box = stack.mStackBox; in setFocusedStackFrame() 4849 if (position <= StackBox.TASK_STACK_GOES_BELOW && in createStack()
|
/frameworks/base/services/java/com/android/server/am/ |
D | ActivityStackSupervisor.java | 77 import com.android.server.wm.StackBox; 1308 mService.createStack(-1, HOME_STACK_ID, StackBox.TASK_STACK_GOES_OVER, 1.0f); in adjustStackFocus()
|
D | ActivityManagerService.java | 55 import com.android.server.wm.StackBox; 1775 wm.createStack(HOME_STACK_ID, -1, StackBox.TASK_STACK_GOES_OVER, 1.0f); in setWindowManager()
|