Lines Matching refs:stepCount
227 int stepCount) { in dragViewToBottom() argument
228 dragViewToBottom(test, test.getActivity(), v, stepCount); in dragViewToBottom()
240 int stepCount) { in dragViewToBottom() argument
255 drag(test, x, x, fromY, toY, stepCount); in dragViewToBottom()
466 public static void dragViewToTop(ActivityInstrumentationTestCase test, View v, int stepCount) { in dragViewToTop() argument
467 dragViewToTop((InstrumentationTestCase) test, v, stepCount); in dragViewToTop()
487 public static void dragViewToTop(InstrumentationTestCase test, View v, int stepCount) { in dragViewToTop() argument
498 drag(test, x, x, fromY, toY, stepCount); in dragViewToTop()
761 float fromY, float toY, int stepCount) { in drag() argument
762 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount); in drag()
776 float toY, int stepCount) { in drag() argument
785 float yStep = (toY - fromY) / stepCount; in drag()
786 float xStep = (toX - fromX) / stepCount; in drag()
791 for (int i = 0; i < stepCount; ++i) { in drag()