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; 95 DisplayArea<WindowContainer> parent = new DisplayArea<>(mWm, BELOW_TASKS, "Parent"); in testDisplayArea_positionChanged_throwsIfIncompatibleChild() 105 assertEquals(BELOW_TASKS, typeOf(new DisplayArea<>(mWm, BELOW_TASKS, "test"))); in testType_typeOf() 109 assertEquals(BELOW_TASKS, typeOf(createWindowToken(TYPE_WALLPAPER))); in testType_typeOf() 117 checkSiblings(BELOW_TASKS, BELOW_TASKS); in testType_checkSiblings() 118 checkSiblings(BELOW_TASKS, ANY); in testType_checkSiblings() 119 checkSiblings(BELOW_TASKS, ABOVE_TASKS); in testType_checkSiblings() 124 assertThrows(IllegalStateException.class, () -> checkSiblings(ABOVE_TASKS, BELOW_TASKS)); in testType_checkSiblings() 126 assertThrows(IllegalStateException.class, () -> checkSiblings(ANY, BELOW_TASKS)); in testType_checkSiblings() 133 checkChild(ANY, BELOW_TASKS); in testType_checkChild() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayArea.java | 754 BELOW_TASKS, enumConstant 759 checkState(!(bottom != BELOW_TASKS && top == BELOW_TASKS), in checkSiblings() 770 case BELOW_TASKS: in checkChild() 771 checkState(child == BELOW_TASKS, "BELOW_TASKS can only contain BELOW_TASKS"); in checkChild() 789 return c.getWindowLayerFromType() < APPLICATION_LAYER ? BELOW_TASKS : ABOVE_TASKS; in typeOf()
|
D | DisplayAreaPolicyBuilder.java | 947 type = DisplayArea.Type.BELOW_TASKS; in createArea()
|