Home
last modified time | relevance | path

Searched refs:POSITION_BOTTOM (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DRunningTasksTest.java23 import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM;
69 display.addChild(stack, POSITION_BOTTOM); in testCollectTasksByLastActiveTime()
DTaskStackContainersTests.java80 taskStackContainer.positionChildAt(WindowContainer.POSITION_BOTTOM, mPinnedStack, false); in testStackPositionChildAt()
DWindowContainerTests.java33 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM;
270 root.addChild(child3, POSITION_BOTTOM); in testAddChildByIndex()
295 root.positionChildAt(POSITION_BOTTOM, child1, false /* includingParents */); in testPositionChildAt()
328 child1.positionChildAt(POSITION_BOTTOM, child11, true /* includingParents */); in testPositionChildAtIncludeParents()
DActivityStarterTests.java49 import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM;
735 mRootActivityContainer.addChild(secondaryDisplay, POSITION_BOTTOM); in testDeliverIntentToTopActivityOfNonTopDisplay()
824 final TestActivityDisplay secondaryDisplay = addNewActivityDisplayAt(POSITION_BOTTOM); in testReparentTopFocusedActivityToSecondaryDisplay()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowContainer.java90 static final int POSITION_BOTTOM = Integer.MIN_VALUE; field in WindowContainer
255 if ((index < 0 && index != POSITION_BOTTOM) in addChild()
263 } else if (index == POSITION_BOTTOM) { in addChild()
424 if ((position < 0 && position != POSITION_BOTTOM) in positionChildAt()
433 position = POSITION_BOTTOM; in positionChildAt()
448 case POSITION_BOTTOM: in positionChildAt()
455 getParent().positionChildAt(POSITION_BOTTOM, this /* child */, in positionChildAt()
DTaskStack.java589 positionChildAt(POSITION_BOTTOM, child, includingParents); in positionChildAtBottom()
654 if (targetPosition == POSITION_BOTTOM && minPosition == 0) { in findPositionForTask()
655 return POSITION_BOTTOM; in findPositionForTask()
717 getParent().positionChildAt(POSITION_BOTTOM, this, false /* includingParents */); in removeChild()
DActivityDisplay.java85 static final int POSITION_BOTTOM = Integer.MIN_VALUE; field in ActivityDisplay
205 if (position == POSITION_BOTTOM) { in addChild()
DDisplayContent.java4319 int belowAlwaysOnTopPosition = POSITION_BOTTOM; in findPositionForStack()
4330 int minPosition = POSITION_BOTTOM; in findPositionForStack()
4339 POSITION_BOTTOM ? belowAlwaysOnTopPosition : topChildPosition; in findPositionForStack()
4343 POSITION_BOTTOM ? belowAlwaysOnTopPosition : 0; in findPositionForStack()
DTaskRecord.java85 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM;
464 final int position = onTop ? POSITION_TOP : POSITION_BOTTOM; in createTask()
DActivityStack.java57 import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM;
526 display.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM); in ActivityStack()
897 activityDisplay.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM); in reparent()
DRootActivityContainer.java316 addChild(activityDisplay, ActivityDisplay.POSITION_BOTTOM); in getActivityDisplayOrCreate()