/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthPanelController.java | 38 public static final int POSITION_BOTTOM = 1; field in AuthPanelController 42 @IntDef({POSITION_BOTTOM, POSITION_LEFT, POSITION_RIGHT}) 52 @Position private int mPosition = POSITION_BOTTOM; 79 case POSITION_BOTTOM: in getLeftBound() 87 return getLeftBound(POSITION_BOTTOM); in getLeftBound() 93 case POSITION_BOTTOM: in getTopBound() 100 return getTopBound(POSITION_BOTTOM); in getTopBound()
|
H A D | AuthContainerView.java | 582 mPanelController.setPosition(AuthPanelController.POSITION_BOTTOM); in maybeUpdatePositionForUdfps() 599 mPanelController.setPosition(AuthPanelController.POSITION_BOTTOM); in maybeUpdatePositionForUdfps()
|
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | SyncEngineTests.java | 23 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 207 parentWC.addChild(botChildWC, POSITION_BOTTOM); in testFillsParent() 239 parentWC.addChild(botChildWC, POSITION_BOTTOM); in testReparentOut() 274 nonMemberParentWC.addChild(botChildWC, POSITION_BOTTOM); in testReparentIn() 291 botChildWC.reparent(parentWC, POSITION_BOTTOM); in testReparentIn() 313 parentWC.addChild(botChildWC, POSITION_BOTTOM); in testRemoval()
|
H A D | DisplayAreaPolicyTests.java | 26 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 100 stack1.getParent().positionChildAt(POSITION_BOTTOM, stack1, true /* includingParents */); in testTaskDisplayArea_taskPositionChanged_updatesTaskDisplayAreaPosition() 105 stack2.getParent().positionChildAt(POSITION_BOTTOM, stack2, false /* includingParents */); in testTaskDisplayArea_taskPositionChanged_updatesTaskDisplayAreaPosition() 182 stack4.getParent().positionChildAt(POSITION_BOTTOM, stack4, true /* includingParents */); in testDisplayAreaGroup_taskPositionChanged_updatesDisplayAreaGroupPosition()
|
H A D | ActivityStarterTests.java | 55 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 806 .setPosition(POSITION_BOTTOM).build(); in testDeliverIntentToTopActivityOfNonTopDisplay() 942 final TestDisplayContent secondaryDisplay = addNewDisplayContentAt(POSITION_BOTTOM); in testReparentTopFocusedActivityToSecondaryDisplay() 1085 top.getRootTask().reparent(splitOrg.mPrimary, POSITION_BOTTOM); in testTargetStackInSplitScreen()
|
H A D | TestDisplayContent.java | 79 private int mPosition = POSITION_BOTTOM;
|
H A D | RootWindowContainerTests.java | 42 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 554 taskDisplayArea.positionChildAt(POSITION_BOTTOM, rootTask, false /*includingParents*/); in testResumeActivityWhenNonTopmostRootTaskIsTopFocused() 652 taskDisplayArea.positionChildAt(POSITION_BOTTOM, rootTask, false /*includingParents*/); in testResumeActivityLingeringTransition_notExecuted()
|
H A D | WindowContainerTests.java | 51 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 288 root.addChild(child3, POSITION_BOTTOM); in testAddChildByIndex() 313 root.positionChildAt(POSITION_BOTTOM, child1, false /* includingParents */); in testPositionChildAt() 346 child1.positionChildAt(POSITION_BOTTOM, child11, true /* includingParents */); in testPositionChildAtIncludeParents()
|
H A D | DisplayAreaTest.java | 40 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 164 root.addChild(da1, POSITION_BOTTOM); in testForAllTaskDisplayAreas_onlyTraversesDisplayAreaOfTypeAny()
|
H A D | ActivityMetricsLaunchObserverTests.java | 518 .setDisplay(addNewDisplayContentAt(DisplayContent.POSITION_BOTTOM)) in testConsecutiveLaunchOnDifferentDisplay()
|
H A D | RootTaskTests.java | 57 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 1147 mDefaultTaskDisplayArea.positionChildAt(onTop ? POSITION_TOP : POSITION_BOTTOM, task, in createTaskForShouldBeVisibleTest() 1425 mDefaultTaskDisplayArea.positionChildAt(POSITION_BOTTOM, fullscreenRootTask1, in testRootTaskOrderChangedOnPositionRootTask()
|
H A D | WindowTestsBase.java | 58 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 1576 rootTask.reparent(mSecondary, POSITION_BOTTOM); in onTaskInfoChanged()
|
H A D | TaskDisplayAreaTests.java | 227 taskContainer.positionChildAt(WindowContainer.POSITION_BOTTOM, pinnedTask, false); in testRootTaskPositionChildAt()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | TaskDisplayArea.java | 460 getParent().positionChildAt(moveToTop ? POSITION_TOP : POSITION_BOTTOM, 602 int minPosition = POSITION_BOTTOM; 668 } else if (requestedPosition == POSITION_BOTTOM) { 1047 positionChildAt(POSITION_BOTTOM, task, false /*includingParents*/); 1103 final int position = onTop ? POSITION_TOP : POSITION_BOTTOM; 1914 rootTask.getParent().positionChildAt(POSITION_BOTTOM, rootTask,
|
H A D | WindowOrganizerController.java | 41 import static com.android.server.wm.WindowContainer.POSITION_BOTTOM; 855 hop.getToTop() ? POSITION_TOP : POSITION_BOTTOM, in sanitizeAndApplyHierarchyOp() 866 hop.getToTop() ? POSITION_TOP : POSITION_BOTTOM, rootTask, in sanitizeAndApplyHierarchyOp() 874 hop.getToTop() ? POSITION_TOP : POSITION_BOTTOM, in sanitizeAndApplyHierarchyOp() 964 hop.getToTop() ? POSITION_TOP : POSITION_BOTTOM, in reparentChildrenTasksHierarchyOp()
|
H A D | WindowContainer.java | 130 static final int POSITION_BOTTOM = Integer.MIN_VALUE; field in WindowContainer 550 if ((index < 0 && index != POSITION_BOTTOM) in addChild() 558 } else if (index == POSITION_BOTTOM) { in addChild() 728 position = POSITION_BOTTOM; in positionChildAt() 743 case POSITION_BOTTOM: in positionChildAt() 750 getParent().positionChildAt(POSITION_BOTTOM, this /* child */, in positionChildAt()
|
H A D | Task.java | 2561 if (suggestedPosition == POSITION_BOTTOM && minPosition == 0) { in getAdjustedChildPosition() 2562 return POSITION_BOTTOM; in getAdjustedChildPosition() 4131 dc.getDefaultTaskDisplayArea().addChild(task, POSITION_BOTTOM); 4744 displayArea.positionChildAt(POSITION_BOTTOM, this, false /*includingParents*/); 5994 positionChildAt(POSITION_BOTTOM, child, includingParents); 6018 reparent(newParent, onTop ? POSITION_TOP : POSITION_BOTTOM); 6608 parentTask.addChild(task, mOnTop ? POSITION_TOP : POSITION_BOTTOM, 6611 mParent.addChild(task, mOnTop ? POSITION_TOP : POSITION_BOTTOM);
|
H A D | DisplayArea.java | 135 && (position == POSITION_TOP || position == POSITION_BOTTOM)) { in positionChildAt()
|
H A D | RootWindowContainer.java | 1392 addChild(displayContent, POSITION_BOTTOM); in setWindowManager() 1472 addChild(displayContent, POSITION_BOTTOM); in getDisplayContentOrCreate()
|