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;
66 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;
274 root.addChild(child3, POSITION_BOTTOM); in testAddChildByIndex()
299 root.positionChildAt(POSITION_BOTTOM, child1, false /* includingParents */); in testPositionChildAt()
332 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
253 if ((index < 0 && index != POSITION_BOTTOM) in addChild()
261 } else if (index == POSITION_BOTTOM) { in addChild()
422 if ((position < 0 && position != POSITION_BOTTOM) in positionChildAt()
431 position = POSITION_BOTTOM; in positionChildAt()
446 case POSITION_BOTTOM: in positionChildAt()
453 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.java4307 int belowAlwaysOnTopPosition = POSITION_BOTTOM; in findPositionForStack()
4318 int minPosition = POSITION_BOTTOM; in findPositionForStack()
4327 POSITION_BOTTOM ? belowAlwaysOnTopPosition : topChildPosition; in findPositionForStack()
4331 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.java56 import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM;
523 display.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM); in ActivityStack()
894 activityDisplay.addChild(this, onTop ? POSITION_TOP : POSITION_BOTTOM); in reparent()
DRootActivityContainer.java315 addChild(activityDisplay, ActivityDisplay.POSITION_BOTTOM); in getActivityDisplayOrCreate()