Home
last modified time | relevance | path

Searched refs:positionY (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DSwipePipToHomeAnimator.java233 rotatedPosition.degree, rotatedPosition.positionX, rotatedPosition.positionY);
248 rotatedPosition.degree, rotatedPosition.positionX, rotatedPosition.positionY);
280 final float degree, positionX, positionY;
285 positionY = progress * (mDestinationBoundsTransformed.bottom - mStartBounds.top)
291 positionY = progress * (mDestinationBoundsTransformed.top - mStartBounds.top)
294 return new RotatedPosition(degree, positionX, positionY);
415 private final float positionY;
417 private RotatedPosition(float degree, float positionX, float positionY) {
420 this.positionY = positionY;
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DEdgeBackGesturePanel.java612 float positionY = touchY - mFingerOffset; in updatePosition() local
613 positionY = Math.max(positionY, mMinArrowPosition); in updatePosition()
614 positionY -= getLayoutParams().height / 2.0f; in updatePosition()
616 setY(MathUtils.clamp((int) positionY, 0, mDisplaySize.y)); in updatePosition()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCursorAnchorInfoUtils.java52 final float positionY) { in isPositionVisible() argument
53 final float[] position = new float[] { positionX, positionY }; in isPositionVisible()