HomeSort by relevance Sort by last modified time
    Searched full:currentrotation (Results 1 - 4 of 4) sorted by null

  /frameworks/base/policy/src/com/android/internal/policy/impl/
WindowOrientationListener.java 539 Slog.v(TAG, "Result: currentRotation=" + mCurrentRotation
585 final int currentRotation = mCurrentRotation;
586 if (currentRotation >= 0) {
589 // For example, if currentRotation is ROTATION_0 and proposed is ROTATION_90,
591 if (rotation == currentRotation
592 || rotation == (currentRotation + 1) % 4) {
608 // For example, if currentRotation is ROTATION_0 and rotation is ROTATION_270,
610 if (rotation == currentRotation
611 || rotation == (currentRotation + 3) % 4) {
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/ui/
RotatableLayout.java 129 public static boolean isClockWiseRotation(int prevRotation, int currentRotation) {
130 if (prevRotation == (currentRotation + 90) % 360) {
CameraControls.java 75 int currentRotation = Util.getDisplayRotation((Activity) getContext());
76 if ((currentRotation - mLastRotation + 360) % 360 == 180) {
77 mLastRotation = currentRotation;
  /frameworks/base/tools/orientationplot/
orientationplot.py 303 self.parse_current_rotation = self._get_following_number(line, 'currentRotation=')

Completed in 343 milliseconds