Home | History | Annotate | Download | only in launcher2

Lines Matching full:deltay

1958             int deltaY = mTempLocation[1] - boundingRect.top;
1962 c.y += deltaY;
2134 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
2135 double angle = Math.atan(((float) deltaY) / deltaX);
2143 result[1] = (int) Math.signum(deltaY);
2486 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2492 deltaY = 0;
2495 if (deltaX == 0 && deltaY == 0) {
2500 computeDirectionVector(deltaX, deltaY, resultDirection);