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; 66 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; 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()
|
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 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()
|
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 | 4307 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()
|
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 | 56 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()
|
D | RootActivityContainer.java | 315 addChild(activityDisplay, ActivityDisplay.POSITION_BOTTOM); in getActivityDisplayOrCreate()
|