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

1 2

  /external/chromium_org/ui/events/
gesture_event_details.cc 45 data.swipe.left = delta_x < 0;
46 data.swipe.right = delta_x > 0;
47 data.swipe.up = delta_y < 0;
48 data.swipe.down = delta_y > 0;
gesture_event_details.h 87 return data.swipe.left;
92 return data.swipe.right;
97 return data.swipe.up;
102 return data.swipe.down;
150 struct { // SWIPE direction.
155 } swipe; member in union:ui::GestureEventDetails::Details
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SwipeableConversationItemView.java 62 // swipe on a item-by-item basis.
72 public void startUndoAnimation(AnimatorListener listener, boolean swipe) {
73 final Animator a = (swipe) ? mConversationItemView.createSwipeUndoAnimation()
79 public void startDeleteAnimation(AnimatorListener listener, boolean swipe) {
80 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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Settings.java 30 import com.android.mail.providers.UIProvider.Swipe;
92 public final int swipe; field in class:Settings
131 swipe = DEFAULT;
155 swipe = inParcel.readInt();
183 swipe = cursor.getInt(cursor.getColumnIndex(SettingsColumns.SWIPE));
217 swipe = json.optInt(SettingsColumns.SWIPE, sDefault.swipe);
266 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} The details of the swipe.
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
all_page_actions.py 24 from telemetry.page.actions.swipe import SwipeAction
swipe.js 29 chrome.gpuBenchmarking.swipe);
58 chrome.gpuBenchmarking.swipe(this.options_.direction_,
action_runner.py 9 from telemetry.page.actions.swipe import SwipeAction
60 swipe/scroll).
196 """Perform swipe gesture on the page.
205 direction: The direction of swipe, either 'left', 'right',
207 distance: The distance to swipe (in pixel).
217 """Perform swipe gesture on the element.
231 direction: The direction of swipe, either 'left', 'right',
233 distance: The distance to swipe (in pixel).
  /frameworks/testing/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 130 * Used with the swipe away and blink out animations to bring in the undo view.
471 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X, local
476 set.playTogether(fadeOut, swipe);
487 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X, 0.f); local
494 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/ub-uiautomator/
ub-uiautomator.jar 
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AnimatedAdapter.java 497 false /* don't show swipe background */);
500 true /* show swipe background */);
733 boolean swipe) {
740 deletingView.startDeleteAnimation(mAnimatorListener, swipe);
748 private View getUndoingView(int position, Conversation conv, ViewGroup parent, boolean swipe) {
755 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 
  /frameworks/base/docs/html/design/
design_toc.cs 68 <li><a href="<?cs var:toroot ?>design/patterns/swipe-views.html">Swipe Views</a></li>

Completed in 484 milliseconds

1 2