Home
last modified time | relevance | path

Searched refs:BELOW_TASKS (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDisplayAreaTest.java36 import static com.android.server.wm.DisplayArea.Type.BELOW_TASKS;
91 DisplayArea<WindowContainer> parent = new DisplayArea<>(mWm, BELOW_TASKS, "Parent"); in testDisplayArea_positionChanged_throwsIfIncompatibleChild()
101 assertEquals(BELOW_TASKS, typeOf(new DisplayArea<>(mWm, BELOW_TASKS, "test"))); in testType_typeOf()
105 assertEquals(BELOW_TASKS, typeOf(createWindowToken(TYPE_WALLPAPER))); in testType_typeOf()
113 checkSiblings(BELOW_TASKS, BELOW_TASKS); in testType_checkSiblings()
114 checkSiblings(BELOW_TASKS, ANY); in testType_checkSiblings()
115 checkSiblings(BELOW_TASKS, ABOVE_TASKS); in testType_checkSiblings()
120 assertThrows(IllegalStateException.class, () -> checkSiblings(ABOVE_TASKS, BELOW_TASKS)); in testType_checkSiblings()
122 assertThrows(IllegalStateException.class, () -> checkSiblings(ANY, BELOW_TASKS)); in testType_checkSiblings()
129 checkChild(ANY, BELOW_TASKS); in testType_checkChild()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayArea.java663 BELOW_TASKS, enumConstant
668 checkState(!(bottom != BELOW_TASKS && top == BELOW_TASKS), in checkSiblings()
679 case BELOW_TASKS: in checkChild()
680 checkState(child == BELOW_TASKS, "BELOW_TASKS can only contain BELOW_TASKS"); in checkChild()
698 return c.getWindowLayerFromType() < APPLICATION_LAYER ? BELOW_TASKS : ABOVE_TASKS; in typeOf()
DDisplayAreaPolicyBuilder.java875 type = DisplayArea.Type.BELOW_TASKS; in createArea()