Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DTaskWindowContainerController.java35 import static com.android.server.wm.WindowContainer.POSITION_TOP;
80 final int position = toTop ? POSITION_TOP : POSITION_BOTTOM; in TaskWindowContainerController()
107 positionChildAt(childController, POSITION_TOP); in positionChildAtTop()
DWindowContainer.java84 static final int POSITION_TOP = Integer.MAX_VALUE; field in WindowContainer
405 || (position > mChildren.size() && position != POSITION_TOP)) { in positionChildAt()
411 position = POSITION_TOP; in positionChildAt()
417 case POSITION_TOP: in positionChildAt()
423 getParent().positionChildAt(POSITION_TOP, this /* child */, in positionChildAt()
DStackWindowController.java35 import static com.android.server.wm.WindowContainer.POSITION_TOP;
141 mContainer.positionChildAt(POSITION_TOP, childTask, includingParents); in positionChildAtTop()
DTaskStack.java652 } else if (targetPosition == POSITION_TOP in findPositionForTask()
654 return POSITION_TOP; in findPositionForTask()
DDisplayContent.java3335 positionChildAt(POSITION_TOP, stack, false /* includingParents */); in onStackWindowingModeChanged()
3402 && position != POSITION_TOP) { in positionChildAt()
3429 boolean toTop = requestedPosition == POSITION_TOP; in findPositionForStack()
/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;
87 stack.addTask(newTask, POSITION_TOP); in createTaskInStack()
DTaskStackContainersTests.java104 taskStackContainer.positionChildAt(WindowContainer.POSITION_TOP, stack1, false); in testStackPositionBelowPinnedStack()
DDisplayContentTests.java31 import static com.android.server.wm.WindowContainer.POSITION_TOP;
328 window1.getParent().positionChildAt(POSITION_TOP, window1, true); in testFocusedWindowMultipleDisplays()
DWindowContainerTests.java40 import static com.android.server.wm.WindowContainer.POSITION_TOP;
268 root.positionChildAt(POSITION_TOP, child1, false /* includingParents */); in testPositionChildAt()
297 child1.positionChildAt(POSITION_TOP, child11, true /* includingParents */); in testPositionChildAtIncludeParents()
/frameworks/base/services/core/java/com/android/server/am/
DActivityDisplay.java67 static final int POSITION_TOP = Integer.MAX_VALUE; field in ActivityDisplay
136 } else if (position == POSITION_TOP) { in addChild()
DActivityStack.java41 import static com.android.server.am.ActivityDisplay.POSITION_TOP;
704 activityDisplay.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM); in postAddToDisplay()