Home
last modified time | relevance | path

Searched refs:FLAG_IS_DISPLAY (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/transition/
H A DShellTransitionTests.java35 import static android.window.TransitionInfo.FLAG_IS_DISPLAY;
543 .addChange(new ChangeBuilder(TRANSIT_CHANGE).setFlags(FLAG_IS_DISPLAY).setRotate() in testShouldRotateSeamlessly()
551 .addChange(new ChangeBuilder(TRANSIT_CHANGE).setFlags(FLAG_IS_DISPLAY).setRotate() in testShouldRotateSeamlessly()
560 .addChange(new ChangeBuilder(TRANSIT_CHANGE).setFlags(FLAG_IS_DISPLAY).setRotate() in testShouldRotateSeamlessly()
571 .addChange(new ChangeBuilder(TRANSIT_CHANGE).setFlags(FLAG_IS_DISPLAY) in testShouldRotateSeamlessly()
581 FLAG_IS_DISPLAY | FLAG_DISPLAY_HAS_ALERT_WINDOWS).setRotate().build()) in testShouldRotateSeamlessly()
589 .addChange(new ChangeBuilder(TRANSIT_CHANGE).setFlags(FLAG_IS_DISPLAY) in testShouldRotateSeamlessly()
/aosp12/frameworks/base/core/java/android/window/
H A DTransitionInfo.java94 public static final int FLAG_IS_DISPLAY = 1 << 5; field in TransitionInfo
118 FLAG_IS_DISPLAY,
309 if ((flags & FLAG_IS_DISPLAY) != 0) { in flagsToString()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
H A DDefaultTransitionHandler.java38 import static android.window.TransitionInfo.FLAG_IS_DISPLAY;
160 if ((change.getFlags() & FLAG_IS_DISPLAY) != 0) { in isRotationSeamless()
299 if (change.getMode() == TRANSIT_CHANGE && (change.getFlags() & FLAG_IS_DISPLAY) != 0) { in startAnimation()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DTransition.java46 import static android.window.TransitionInfo.FLAG_IS_DISPLAY;
1340 flags |= FLAG_IS_DISPLAY; in getChangeFlags()