Home | History | Annotate | Download | only in test

Lines Matching refs:stepCount

197      * @param stepCount How many move steps to include in the drag
205 int stepCount) {
206 dragViewToBottom(test, test.getActivity(), v, stepCount);
215 * @param stepCount How many move steps to include in the drag
218 int stepCount) {
231 drag(test, x, x, fromY, toY, stepCount);
435 * @param stepCount How many move steps to include in the drag
442 public static void dragViewToTop(ActivityInstrumentationTestCase test, View v, int stepCount) {
443 dragViewToTop((InstrumentationTestCase) test, v, stepCount);
461 * @param stepCount How many move steps to include in the drag
463 public static void dragViewToTop(InstrumentationTestCase test, View v, int stepCount) {
474 drag(test, x, x, fromY, toY, stepCount);
729 * @param stepCount How many move steps to include in the drag
737 float fromY, float toY, int stepCount) {
738 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount);
749 * @param stepCount How many move steps to include in the drag
752 float toY, int stepCount) {
761 float yStep = (toY - fromY) / stepCount;
762 float xStep = (toX - fromX) / stepCount;
767 for (int i = 0; i < stepCount; ++i) {