Home
last modified time | relevance | path

Searched refs:newRotation (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DRecentsOrientedState.java151 int newRotation = getRotationForUserDegreesRotated(degrees, mPreviousRotation); in RecentsOrientedState()
152 if (newRotation != mPreviousRotation) { in RecentsOrientedState()
153 mPreviousRotation = newRotation; in RecentsOrientedState()
154 rotationChangeListener.accept(newRotation); in RecentsOrientedState()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRecentsAnimationDeviceState.java248 int newRotation = RecentsOrientedState.getRotationForUserDegreesRotated(degrees, in RecentsAnimationDeviceState()
250 if (newRotation == mSensorRotation) { in RecentsAnimationDeviceState()
254 mSensorRotation = newRotation; in RecentsAnimationDeviceState()
257 if (newRotation == mCurrentAppRotation) { in RecentsAnimationDeviceState()
/packages/apps/Launcher3/src/com/android/launcher3/states/
DRotationHelper.java219 public static int deltaRotation(int oldRotation, int newRotation) { in deltaRotation() argument
220 int delta = newRotation - oldRotation; in deltaRotation()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DTaskThumbnailView.java569 private int getRotationDelta(int oldRotation, int newRotation) { in getRotationDelta() argument
570 int delta = newRotation - oldRotation; in getRotationDelta()
DRecentsView.java1072 private void animateRecentsRotationInPlace(int newRotation) { in animateRecentsRotationInPlace() argument
1079 setLayoutRotation(newRotation, mOrientationState.getDisplayRotation()); in animateRecentsRotationInPlace()
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
DFlingUpDownMethod.java125 private static void rotateToward(View view, float newRotation) { in rotateToward() argument
126 view.setRotation(MathUtil.lerp(view.getRotation(), newRotation, SWIPE_LERP_PROGRESS_FACTOR)); in rotateToward() local