Home
last modified time | relevance | path

Searched refs:CHANGE_ROTATION (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DSimpleOrientationTouchTransformer.java20 import static com.android.launcher3.util.DisplayController.CHANGE_ROTATION;
52 if ((flags & (CHANGE_ROTATION | CHANGE_ACTIVE_SCREEN)) == 0) { in onDisplayInfoChanged()
DRotationTouchHelper.java26 import static com.android.launcher3.util.DisplayController.CHANGE_ROTATION;
267 if ((flags & (CHANGE_ROTATION | CHANGE_ACTIVE_SCREEN | CHANGE_NAVIGATION_MODE in onDisplayInfoChangedInternal()
DRecentsAnimationDeviceState.java24 import static com.android.launcher3.util.DisplayController.CHANGE_ROTATION;
251 if ((flags & (CHANGE_ROTATION | CHANGE_NAVIGATION_MODE)) != 0) { in onDisplayInfoChanged()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DRecentsAnimationDeviceStateTest.kt9 import com.android.launcher3.util.DisplayController.CHANGE_ROTATION in <lambda>()
95 underTest.onDisplayInfoChanged(context, info, CHANGE_ROTATION or CHANGE_NAVIGATION_MODE) in <lambda>()
106 underTest.onDisplayInfoChanged(context, info, CHANGE_ROTATION or CHANGE_NAVIGATION_MODE) in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/
DBaseDraggingActivity.java19 import static com.android.launcher3.util.DisplayController.CHANGE_ROTATION;
150 if ((flags & CHANGE_ROTATION) != 0 && mDeviceProfile.isVerticalBarLayout()) { in onDisplayInfoChanged()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DDisplayController.java88 public static final int CHANGE_ROTATION = 1 << 1; field in DisplayController
95 public static final int CHANGE_ALL = CHANGE_ACTIVE_SCREEN | CHANGE_ROTATION
318 change |= CHANGE_ROTATION; in handleInfoChange()
546 appendFlag(result, change, CHANGE_ROTATION, "CHANGE_ROTATION"); in getChangeFlagsString()
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/util/
DDisplayControllerTest.kt35 import com.android.launcher3.util.DisplayController.CHANGE_ROTATION in <lambda>()
152 verify(displayInfoChangeListener).onDisplayInfoChanged(any(), any(), eq(CHANGE_ROTATION)) in <lambda>()