Searched refs:BELOW_TASKS (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DisplayAreaTest.java | 38 import static com.android.server.wm.DisplayArea.Type.BELOW_TASKS; 96 DisplayArea<WindowContainer> parent = new DisplayArea<>(mWm, BELOW_TASKS, "Parent"); in testDisplayArea_positionChanged_throwsIfIncompatibleChild() 106 assertEquals(BELOW_TASKS, typeOf(new DisplayArea<>(mWm, BELOW_TASKS, "test"))); in testType_typeOf() 110 assertEquals(BELOW_TASKS, typeOf(createWindowToken(TYPE_WALLPAPER))); in testType_typeOf() 118 checkSiblings(BELOW_TASKS, BELOW_TASKS); in testType_checkSiblings() 119 checkSiblings(BELOW_TASKS, ANY); in testType_checkSiblings() 120 checkSiblings(BELOW_TASKS, ABOVE_TASKS); in testType_checkSiblings() 125 assertThrows(IllegalStateException.class, () -> checkSiblings(ABOVE_TASKS, BELOW_TASKS)); in testType_checkSiblings() 127 assertThrows(IllegalStateException.class, () -> checkSiblings(ANY, BELOW_TASKS)); in testType_checkSiblings() 134 checkChild(ANY, BELOW_TASKS); in testType_checkChild() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayArea.java | 861 BELOW_TASKS, enumConstant 866 checkState(!(bottom != BELOW_TASKS && top == BELOW_TASKS), in checkSiblings() 877 case BELOW_TASKS: in checkChild() 878 checkState(child == BELOW_TASKS, "BELOW_TASKS can only contain BELOW_TASKS"); in checkChild() 896 return c.getWindowLayerFromType() < APPLICATION_LAYER ? BELOW_TASKS : ABOVE_TASKS; in typeOf()
|
D | DisplayAreaPolicyBuilder.java | 988 type = DisplayArea.Type.BELOW_TASKS; in createArea()
|