Home
last modified time | relevance | path

Searched refs:swipeEdge (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/window/
DBackEvent.java65 public BackEvent(float touchX, float touchY, float progress, @SwipeEdge int swipeEdge) { in BackEvent() argument
69 mSwipeEdge = swipeEdge; in BackEvent()
DBackMotionEvent.java70 @BackEvent.SwipeEdge int swipeEdge, in BackMotionEvent() argument
78 mSwipeEdge = swipeEdge; in BackMotionEvent()
DBackTouchTracker.java125 public void setGestureStartLocation(float touchX, float touchY, int swipeEdge) { in setGestureStartLocation() argument
130 mSwipeEdge = swipeEdge; in setGestureStartLocation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/
DDefaultCrossActivityBackAnimation.kt47 override fun preparePreCommitClosingRectMovement(swipeEdge: Int) { in preparePreCommitClosingRectMovement()
53 if (swipeEdge != BackEvent.EDGE_RIGHT) { in preparePreCommitClosingRectMovement()
DBackAnimation.java49 @BackEvent.SwipeEdge int swipeEdge); in onBackMotion() argument
DBackAnimationController.java318 @BackEvent.SwipeEdge int swipeEdge in onBackMotion() argument
326 /* swipeEdge = */ swipeEdge)); in onBackMotion()
454 @BackEvent.SwipeEdge int swipeEdge) { in onMotionEvent() argument
477 onGestureStarted(touchX, touchY, swipeEdge); in onMotionEvent()
491 private void onGestureStarted(float touchX, float touchY, @BackEvent.SwipeEdge int swipeEdge) { in onGestureStarted() argument
510 touchTracker.setGestureStartLocation(touchX, touchY, swipeEdge); in onGestureStarted()
DCustomCrossActivityBackAnimation.kt73 override fun preparePreCommitClosingRectMovement(swipeEdge: Int) { in <lambda>()
80 val offset = if (swipeEdge != BackEvent.EDGE_RIGHT) { in <lambda>()
DCrossActivityBackAnimation.kt126 abstract fun preparePreCommitClosingRectMovement(@BackEvent.SwipeEdge swipeEdge: Int) in <lambda>()
188 preparePreCommitClosingRectMovement(backMotionEvent.swipeEdge) in <lambda>()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/back/
DBackAnimationSpec.kt61 val direction = if (backEvent.swipeEdge == BackEvent.EDGE_LEFT) 1 else -1 in createFloatingSurfaceAnimationSpec()