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/
DRotationTouchHelper.java162 int newRotation = RecentsOrientedState.getRotationForUserDegreesRotated(degrees, in init()
164 if (newRotation == mSensorRotation) { in init()
168 mSensorRotation = newRotation; in init()
171 if (newRotation == mCurrentAppRotation) { in init()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DRecentsOrientedState.java144 int newRotation = getRotationForUserDegreesRotated(degrees, mPreviousRotation); in RecentsOrientedState()
145 if (newRotation != mPreviousRotation) { in RecentsOrientedState()
146 mPreviousRotation = newRotation; in RecentsOrientedState()
147 rotationChangeListener.accept(newRotation); in RecentsOrientedState()
/packages/apps/Launcher3/src/com/android/launcher3/states/
DRotationHelper.java196 public static int deltaRotation(int oldRotation, int newRotation) { in deltaRotation() argument
197 int delta = newRotation - oldRotation; in deltaRotation()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DTaskThumbnailView.java597 private int getRotationDelta(int oldRotation, int newRotation) { in getRotationDelta() argument
598 int delta = newRotation - oldRotation; in getRotationDelta()
DRecentsView.java1709 private void animateRecentsRotationInPlace(int newRotation) { in animateRecentsRotationInPlace() argument
1716 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