Home
last modified time | relevance | path

Searched refs:RotationMode (Results 1 – 15 of 15) sorted by relevance

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/
DRecentsUiFactory.java33 import com.android.launcher3.graphics.RotationMode;
64 public static RotationMode ROTATION_LANDSCAPE = new RotationMode(-90) {
91 public static RotationMode ROTATION_SEASCAPE = new RotationMode(90) {
137 public static RotationMode getRotationMode(DeviceProfile dp) { in getRotationMode()
138 return !dp.isVerticalBarLayout() ? RotationMode.NORMAL in getRotationMode()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DRotationMode.java21 public abstract class RotationMode { class
23 public static RotationMode NORMAL = new RotationMode(0) { };
28 public RotationMode(float surfaceRotation) { in RotationMode() method in RotationMode
/packages/apps/Launcher3/src/com/android/launcher3/views/
DActivityContext.java25 import com.android.launcher3.graphics.RotationMode;
69 default RotationMode getRotationMode() { in getRotationMode()
70 return RotationMode.NORMAL; in getRotationMode()
DTransposable.java18 import com.android.launcher3.graphics.RotationMode;
25 RotationMode getRotationMode(); in getRotationMode()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/
DNavBarPosition.java25 import com.android.launcher3.graphics.RotationMode;
50 public RotationMode getRotationMode() { in getRotationMode()
52 : (isRightEdge() ? ROTATION_LANDSCAPE : RotationMode.NORMAL); in getRotationMode()
/packages/apps/Launcher3/go/quickstep/src/com/android/launcher3/uioverrides/
DRecentsUiFactory.java24 import com.android.launcher3.graphics.RotationMode;
89 public static RotationMode getRotationMode(DeviceProfile dp) { in getRotationMode()
90 return RotationMode.NORMAL; in getRotationMode()
/packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/
DUiFactory.java33 import com.android.launcher3.graphics.RotationMode;
82 public static RotationMode getRotationMode(DeviceProfile dp) { in getRotationMode()
83 return RotationMode.NORMAL; in getRotationMode()
/packages/apps/Launcher3/src/com/android/launcher3/
DHotseat.java29 import com.android.launcher3.graphics.RotationMode;
112 public RotationMode getRotationMode() { in getRotationMode()
DLauncher.java101 import com.android.launcher3.graphics.RotationMode;
295 private RotationMode mRotationMode = RotationMode.NORMAL;
455 ? RotationMode.NORMAL : UiFactory.getRotationMode(mDeviceProfile); in reapplyUi()
521 mRotationMode = RotationMode.NORMAL; in initDeviceProfile()
539 public RotationMode getRotationMode() { in getRotationMode()
DUtilities.java65 import com.android.launcher3.graphics.RotationMode;
199 RotationMode m = ((Transposable) v).getRotationMode(); in getDescendantCoordRelativeToAncestor()
DCellLayout.java63 import com.android.launcher3.graphics.RotationMode;
187 private RotationMode mRotationMode = RotationMode.NORMAL;
323 public void setRotationMode(RotationMode mode) { in setRotationMode()
331 public RotationMode getRotationMode() { in getRotationMode()
DWorkspace.java83 import com.android.launcher3.graphics.RotationMode;
298 RotationMode rotationMode = mLauncher.getRotationMode(); in setInsets()
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java57 import com.android.launcher3.graphics.RotationMode;
573 RotationMode rotation = mActivity.getRotationMode(); in onMeasure()
608 RotationMode rotation = mActivity.getRotationMode(); in onLayout()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DBaseSwipeUpHandler.java52 import com.android.launcher3.graphics.RotationMode;
159 public Consumer<MotionEvent> getRecentsViewDispatcher(RotationMode rotationMode) { in getRecentsViewDispatcher()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DRecentsView.java95 import com.android.launcher3.graphics.RotationMode;
1774 public Consumer<MotionEvent> getEventDispatcher(RotationMode rotationMode) { in getEventDispatcher()