HomeSort by relevance Sort by last modified time
    Searched defs:swipe (Results 1 - 25 of 27) sorted by null

1 2

  /system/extras/tests/workloads/
chromefling.sh 77 function swipe { function
105 swipe "$UP" $upCount
108 swipe "$DOWN" $downCount
recentfling.sh 83 function swipe { function
111 swipe "$DOWN" $downCount
113 swipe "$UP" $upCount
115 swipe "$DOWN" $downCount
117 swipe "$UP" $upCount
youtube.sh 70 function swipe { function
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
ItemTouchHelperTest.java 150 final SwipeRecord swipe = mCalback.getSwipe(target); local
151 assertNotNull(swipe);
152 assertEquals(dir, swipe.dir);
211 for (SwipeRecord swipe : mSwipeRecords) {
212 if (swipe.viewHolder == vh) {
213 return swipe;
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
HeadsUpNotificationTests.java 94 obj.swipe(Direction.LEFT, 1.0f);
NotificationInteractionTests.java 72 obj.swipe(Direction.LEFT, 1.0f);
115 mDevice.swipe(mDevice.getDisplayWidth() / 2, mDevice.getDisplayHeight() / 2,
  /platform_testing/tests/functional/overviewtests/src/com/android/overview/functional/
RecentsTests.java 120 // easily identifiable and swipe all the way from the
123 mDevice.swipe(calcBounds.left, calcBounds.top + calcBounds.height() / 2,
  /frameworks/base/services/core/java/com/android/server/policy/
SystemGesturesPointerEventListener.java 120 final int swipe = detectSwipe(event);
121 mSwipeFireable = swipe == SWIPE_NONE;
122 if (swipe == SWIPE_FROM_TOP) {
125 } else if (swipe == SWIPE_FROM_BOTTOM) {
128 } else if (swipe == SWIPE_FROM_RIGHT) {
131 } else if (swipe == SWIPE_FROM_LEFT) {
201 final int swipe = detectSwipe(i, time, x, y); local
202 if (swipe != SWIPE_NONE) {
203 return swipe;
206 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move.getY(p)) local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Settings.java 30 import com.android.mail.providers.UIProvider.Swipe;
93 public final int swipe; field in class:Settings
132 swipe = DEFAULT;
156 swipe = inParcel.readInt();
185 swipe = cursor.getInt(cursor.getColumnIndex(SettingsColumns.SWIPE));
219 swipe = json.optInt(SettingsColumns.SWIPE, sDefault.swipe);
268 json.put(SettingsColumns.SWIPE, swipe)
    [all...]
  /platform_testing/tests/jank/sysapp_wear/src/com/android/wearable/sysapp/janktests/
WatchFacePickerJankTest.java 201 // Swipe to the end of the list.
250 watchFaces.get(0).swipe(Direction.DOWN, 1.0f); method
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiDevice.java 418 * Performs a swipe from one coordinate to another using the number of steps
420 * per step. So for a 100 steps, the swipe will take about 1/2 second to complete.
430 public boolean swipe(int startX, int startY, int endX, int endY, int steps) { method in class:UiDevice
433 .swipe(startX, startY, endX, endY, steps);
437 * Performs a swipe from one coordinate to another coordinate. You can control
438 * the smoothness and speed of the swipe by specifying the number of steps.
440 * steps, the swipe will take around 0.5 seconds to complete.
446 * @param steps is the number of steps for the swipe action
447 * @return true if swipe is performed, false if the operation fails
454 .swipe(startX, startY, endX, endY, steps, true)
466 public boolean swipe(Point[] segments, int segmentSteps) { method in class:UiDevice
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityGestureDispatchTest.java 185 GestureDescription swipe = createSwipe(startX, startY, endX, endY, gestureTime); local
186 mService.runOnServiceSync(() -> mService.doDispatchGesture(swipe, mCallback, null));
232 GestureDescription swipe = createSwipe(startX, startY, endX, endY, gestureTime); local
233 mService.runOnServiceSync(() -> mService.doDispatchGesture(swipe, mCallback, null));
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/20/
uiautomator.jar 
  /prebuilts/sdk/21/
uiautomator.jar 
  /prebuilts/sdk/22/
uiautomator.jar 
  /prebuilts/sdk/23/
uiautomator.jar 
  /prebuilts/sdk/24/
uiautomator.jar 
  /prebuilts/sdk/25/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 

Completed in 1604 milliseconds

1 2