HomeSort by relevance Sort by last modified time
    Searched refs:startx (Results 1 - 7 of 7) sorted by null

  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
DragAction.java 26 private final int startx; field in class:DragAction
50 int startx, int starty, int endx, int endy,
53 this.startx = startx;
71 addTuple("start", startx, starty).
81 device.drag(startx, starty, endx, endy, steps, timeMs);
  /cts/apps/CtsVerifier/lib/colorchecker/
grouping.h 70 int startx = x; local
82 if (startx < 0) startx = 0;
86 for (x = endx; x >= startx; x--) {
99 for (x = endx; x >= startx; x--) {
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.cc 134 int startx, starty; local
137 startx = rect.left() >> 1;
142 if((startx+width) > 120) {
143 width = 120 - startx; // avoid horizontal overflow
152 sp1 = (ulong*)bits + startx + starty*240;
154 dp1 = (ulong *)fb + (159 - starty) + startx*320;
190 int startx, starty; local
193 startx = rect.left() >> 1;
198 if((startx+width) > 120) {
199 width = 120 - startx; // avoid horizontal overflo
    [all...]
  /sdk/chimpchat/src/com/android/chimpchat/core/
IChimpDevice.java 115 * @param startx the x coordinate of the drag's starting point
122 void drag(int startx, int starty, int endx, int endy, int steps, long ms);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
MonkeyRecorderFrame.java 330 int startx = minW; local
337 startx = endx = midWidth;
341 startx = endx = midWidth;
350 startx = width;
354 return new DragAction(dir, startx, starty, endx, endy, numSteps, millis);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyDevice.java 161 int startx = (Integer) start.__getitem__(0).__tojava__(Integer.class); local
171 impl.drag(startx, starty, endx, endy, steps, ms);
  /sdk/chimpchat/src/com/android/chimpchat/adb/
AdbChimpDevice.java 531 public void drag(int startx, int starty, int endx, int endy, int steps, long ms) {
535 LinearInterpolator.Point start = new LinearInterpolator.Point(startx, starty);

Completed in 207 milliseconds