Home
last modified time | relevance | path

Searched refs:POSITION_TOP (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DTaskStackTests.java53 stack.positionChildAt(WindowContainer.POSITION_TOP, task1, false /* includingParents */); in testStackPositionChildAt()
58 stack.positionChildAt(WindowContainer.POSITION_TOP, task2, false /* includingParents */); in testStackPositionChildAt()
DWindowTestUtils.java33 import static com.android.server.wm.WindowContainer.POSITION_TOP;
71 stack.addTask(newTask, POSITION_TOP); in createTaskInStack()
DDisplayContentTests.java25 import static com.android.server.wm.WindowContainer.POSITION_TOP;
257 window1.getParent().positionChildAt(POSITION_TOP, window1, true); in testFocusedWindowMultipleDisplays()
DTaskStackContainersTests.java106 taskStackContainer.positionChildAt(WindowContainer.POSITION_TOP, stack1, false); in testStackPositionBelowPinnedStack()
DWindowContainerTests.java38 import static com.android.server.wm.WindowContainer.POSITION_TOP;
242 root.positionChildAt(POSITION_TOP, child1, false /* includingParents */); in testPositionChildAt()
271 child1.positionChildAt(POSITION_TOP, child11, true /* includingParents */); in testPositionChildAtIncludeParents()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowContainer.java43 static final int POSITION_TOP = Integer.MAX_VALUE; field in WindowContainer
246 || (position > mChildren.size() && position != POSITION_TOP)) { in positionChildAt()
252 position = POSITION_TOP; in positionChildAt()
258 case POSITION_TOP: in positionChildAt()
264 getParent().positionChildAt(POSITION_TOP, this /* child */, in positionChildAt()
DTaskWindowContainerController.java35 import static com.android.server.wm.WindowContainer.POSITION_TOP;
82 final int position = toTop ? POSITION_TOP : POSITION_BOTTOM; in TaskWindowContainerController()
DStackWindowController.java40 import static com.android.server.wm.WindowContainer.POSITION_TOP;
154 mContainer.positionChildAt(POSITION_TOP, childTask, includingParents); in positionChildAtTop()
DDisplayContent.java1707 mTaskStackContainers.positionChildAt(onTop ? POSITION_TOP : POSITION_BOTTOM, stack, in addStackToDisplay()
3296 if (StackId.isAlwaysOnTop(child.mStackId) && position != POSITION_TOP) { in positionChildAt()
3323 boolean toTop = requestedPosition == POSITION_TOP; in findPositionForStack()