Searched refs:mLastOrientation (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/widget/
H A DLocationDialogLayout.java37 private int mLastOrientation; field in class:LocationDialogLayout
43 mLastOrientation = context.getResources().getConfiguration().orientation;
56 if (config.orientation == mLastOrientation) {
59 mLastOrientation = config.orientation;
H A DAspectRatioDialogLayout.java30 private int mLastOrientation; field in class:AspectRatioDialogLayout
41 mLastOrientation = getResources().getConfiguration().orientation;
68 if (config.orientation == mLastOrientation) {
71 mLastOrientation = config.orientation;
H A DVideoRecordingHints.java59 private int mLastOrientation = OrientationEventListener.ORIENTATION_UNKNOWN; field in class:VideoRecordingHints
207 if (mLastOrientation == orientation) {
210 mLastOrientation = orientation;
211 if (mLastOrientation == OrientationEventListener.ORIENTATION_UNKNOWN) {
237 return (mLastOrientation % 180 == 90 && mIsDefaultToPortrait)
238 || (mLastOrientation % 180 == 0 && !mIsDefaultToPortrait);

Completed in 154 milliseconds