Lines Matching full:deltay
1946 int deltaY = mTempLocation[1] - boundingRect.top;
1950 c.y += deltaY;
2124 private void computeDirectionVector(float deltaX, float deltaY, int[] result) {
2125 double angle = Math.atan(((float) deltaY) / deltaX);
2133 result[1] = (int) Math.signum(deltaY);
2493 int deltaY = (dropRegionRect.centerY() - dragViewCenterY) / spanY;
2499 deltaY = 0;
2502 if (deltaX == 0 && deltaY == 0) {
2507 computeDirectionVector(deltaX, deltaY, resultDirection);