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

1 2

  /external/chromium_org/ui/events/
gesture_event_details.cc 47 data.swipe.left = delta_x < 0;
48 data.swipe.right = delta_x > 0;
49 data.swipe.up = delta_y < 0;
50 data.swipe.down = delta_y > 0;
gesture_event_details.h 94 return data.swipe.left;
99 return data.swipe.right;
104 return data.swipe.up;
109 return data.swipe.down;
163 struct { // SWIPE direction.
168 } swipe; member in union:ui::GestureEventDetails::Details
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SwipeableConversationItemView.java 64 public void startUndoAnimation(AnimatorListener listener, boolean swipe) {
65 final Animator a = (swipe) ? mConversationItemView.createSwipeUndoAnimation()
71 public void startDeleteAnimation(AnimatorListener listener, boolean swipe) {
72 final Animator a = (swipe) ? mConversationItemView.createDestroyWithSwipeAnimation()
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SystemGesturesPointerEventListener.java 91 final int swipe = detectSwipe(event);
92 mSwipeFireable = swipe == SWIPE_NONE;
93 if (swipe == SWIPE_FROM_TOP) {
96 } else if (swipe == SWIPE_FROM_BOTTOM) {
99 } else if (swipe == SWIPE_FROM_RIGHT) {
153 final int swipe = detectSwipe(i, time, x, y);
154 if (swipe != SWIPE_NONE) {
155 return swipe;
158 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move.getY(p));
159 if (swipe != SWIPE_NONE)
    [all...]
  /external/chromium_org/ui/events/ozone/evdev/libgestures_glue/
gesture_interpreter_libevdev_cros.cc 76 // Number of fingers for swipe gestures.
183 OnGestureSwipe(gesture, &gesture->details.swipe);
316 const GestureSwipe* swipe) {
317 DVLOG(3) << base::StringPrintf("Gesture Swipe: (%f, %f) [%f, %f]",
318 swipe->dx,
319 swipe->dy,
320 swipe->ordinal_dx,
321 swipe->ordinal_dy);
326 // Swipe is 3-finger scrolling.
331 swipe->dx
    [all...]
gesture_interpreter_libevdev_cros.h 64 void OnGestureSwipe(const Gesture* gesture, const GestureSwipe* swipe);
  /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...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-keyboard.js 96 * The maximum swipe distance that will trigger hintText of a key
104 * The boolean to decide if it is swipe in process or finished.
120 * A structure to track the current swipe status.
124 * The latest PointerMove event in the swipe.
130 * Whether or not a swipe changes direction.
150 * The PointerMove event which triggered the swipe.
162 * Current swipe direction.
168 * The number of times we've swiped within a single swipe.
180 // Checks for horizontal swipe.
188 // Checks for vertical swipe
    [all...]
kb-key-base.js 174 * Handles a swipe flick that originated from this key.
175 * @param {detail} detail The details of the swipe.
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
swipe.js 29 chrome.gpuBenchmarking.swipe);
58 chrome.gpuBenchmarking.swipe(this.options_.direction_,
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiDevice.java 415 * Performs a swipe from one coordinate to another using the number of steps
417 * per step. So for a 100 steps, the swipe will take about 1/2 second to complete.
427 public boolean swipe(int startX, int startY, int endX, int endY, int steps) { method in class:UiDevice
430 .swipe(startX, startY, endX, endY, steps);
434 * Performs a swipe from one coordinate to another coordinate. You can control
435 * the smoothness and speed of the swipe by specifying the number of steps.
437 * steps, the swipe will take around 0.5 seconds to complete.
443 * @param steps is the number of steps for the swipe action
444 * @return true if swipe is performed, false if the operation fails
451 .swipe(startX, startY, endX, endY, steps, true)
463 public boolean swipe(Point[] segments, int segmentSteps) { method in class:UiDevice
    [all...]
UiObject.java 198 return getInteractionController().swipe(srcRect.centerX(), srcRect.centerY(),
217 return getInteractionController().swipe(srcRect.centerX(), srcRect.centerY(), destX, destY,
222 * Performs the swipe up action on the UiObject.
241 return false; // too small to swipe
242 return getInteractionController().swipe(rect.centerX(),
248 * Performs the swipe down action on the UiObject.
249 * The swipe gesture can be performed over any surface. The targeted
269 return false; // too small to swipe
270 return getInteractionController().swipe(rect.centerX(),
276 * Performs the swipe left action on the UiObject.
    [all...]
InteractionController.java 356 swipe(downX, downY, upX, upY, steps);
360 // Collect all accessibility events generated during the swipe command and get the
422 * @return true if the swipe executed successfully
424 public boolean swipe(int downX, int downY, int upX, int upY, int steps) {
425 return swipe(downX, downY, upX, upY, steps, false /*drag*/);
435 * @param drag when true, the swipe becomes a drag swipe
436 * @return true if the swipe executed successfully
438 public boolean swipe(int downX, int downY, int upX, int upY, int steps, boolean drag) {
472 * Performs a swipe between points in the Point array
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/widget/accessibility/
AccessibilityTabModelListItem.java 128 * Used with the swipe away and blink out animations to bring in the undo view.
469 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X, local
474 set.playTogether(fadeOut, swipe);
485 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X, 0.f); local
492 set.playTogether(swipe, fadeIn, scaleX, scaleY, resetHeight);
  /prebuilts/sdk/16/
uiautomator.jar 
  /external/chromium_org/ui/keyboard/resources/
constants.js 38 * The enumeration of swipe directions.
  /prebuilts/misc/common/power-helper/
PowerTestHelper.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AnimatedAdapter.java 513 false /* don't show swipe background */);
516 true /* show swipe background */);
749 boolean swipe) {
756 deletingView.startDeleteAnimation(mAnimatorListener, swipe);
764 private View getUndoingView(int position, Conversation conv, ViewGroup parent, boolean swipe) {
771 undoView.startUndoAnimation(mAnimatorListener, swipe);
    [all...]
  /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/current/
uiautomator.jar 

Completed in 947 milliseconds

1 2