Searched refs:POSITION_BOTTOM (Results 1 – 11 of 11) sorted by relevance
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | RunningTasksTest.java | 23 import static com.android.server.wm.ActivityDisplay.POSITION_BOTTOM; 69 display.addChild(stack, POSITION_BOTTOM); in testCollectTasksByLastActiveTime()
|
D | TaskStackContainersTests.java | 80 taskStackContainer.positionChildAt(WindowContainer.POSITION_BOTTOM, mPinnedStack, false); in testStackPositionChildAt()
|
D | WindowContainerTests.java | 33 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()
|
D | ActivityStarterTests.java | 49 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/ |
D | WindowContainer.java | 90 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()
|
D | TaskStack.java | 589 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()
|
D | ActivityDisplay.java | 85 static final int POSITION_BOTTOM = Integer.MIN_VALUE; field in ActivityDisplay 205 if (position == POSITION_BOTTOM) { in addChild()
|
D | DisplayContent.java | 4319 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()
|
D | TaskRecord.java | 85 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 464 final int position = onTop ? POSITION_TOP : POSITION_BOTTOM; in createTask()
|
D | ActivityStack.java | 57 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()
|
D | RootActivityContainer.java | 316 addChild(activityDisplay, ActivityDisplay.POSITION_BOTTOM); in getActivityDisplayOrCreate()
|