Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/
DTransitionUtil.java35 import static android.window.TransitionInfo.FLAG_MOVED_TO_TOP;
118 && (change.getFlags() & FLAG_MOVED_TO_TOP) != 0 in isOrderOnly()
/frameworks/base/core/java/android/window/
DTransitionInfo.java160 public static final int FLAG_MOVED_TO_TOP = 1 << 20; field in TransitionInfo
204 FLAG_MOVED_TO_TOP,
552 if ((flags & FLAG_MOVED_TO_TOP) != 0) { in flagsToString()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTransitionTests.java42 import static android.window.TransitionInfo.FLAG_MOVED_TO_TOP;
2142 assertTrue((info.getChanges().get(0).getFlags() & TransitionInfo.FLAG_MOVED_TO_TOP) != 0); in testMoveToTopWhileVisible()
2240 hasOrderChange = hasOrderChange || (chg.getFlags() & FLAG_MOVED_TO_TOP) != 0; in testMoveToTopStartAfterReadyAfterParallel()
2264 hasOrderChange = hasOrderChange || (chg.getFlags() & FLAG_MOVED_TO_TOP) != 0; in testMoveToTopStartAfterReadyBeforeParallel()
2300 hasOrderChange = hasOrderChange || (chg.getFlags() & FLAG_MOVED_TO_TOP) != 0; in testMoveToTopStartBeforeReadyAfterParallel()
2320 hasOrderChange = hasOrderChange || (chg.getFlags() & FLAG_MOVED_TO_TOP) != 0; in testMoveToTopStartBeforeReadyBeforeParallel()
/frameworks/base/services/core/java/com/android/server/wm/
DTransition.java58 import static android.window.TransitionInfo.FLAG_MOVED_TO_TOP;
3481 flags |= FLAG_MOVED_TO_TOP; in getChangeFlags()