Home | History | Annotate | Download | only in automation

Lines Matching defs:startY

56     public static Interaction newFling(float startX, float startY,
59 new float[]{startY, endY}, duration);
62 public static Interaction newFlingDown(float startX, float startY) {
65 new float[]{startY, startY + DEFAULT_FLING_SIZE_PX}, DEFAULT_FLING_DURATION_MS);
68 public static Interaction newFlingUp(float startX, float startY) {
70 new float[]{startX, startX}, new float[]{startY, startY - DEFAULT_FLING_SIZE_PX},
74 public static Interaction newTap(float startX, float startY) {
76 new float[]{startX, startX}, new float[]{startY, startY},
113 float startY = yPos[0];
116 startTime, startTime, MotionEvent.ACTION_DOWN, startX, startY, 0);
123 float stepY = (endY - startY) / STEP_COUNT;
131 MotionEvent.ACTION_MOVE, startX + deltaX, startY + deltaY, 0);
136 startY = endY;