HomeSort by relevance Sort by last modified time
    Searched full:drag (Results 76 - 100 of 1050) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/
word-spacing-highlight.html 12 ↑ click there and drag to the right
drag-escape.html 50 <p>Drag the "Drag Me!" link below</p>
53 <a id="test-link" href="http://webkit.org" ondragstart="dragStart(event)">Drag Me!</a>
  /packages/apps/Dialer/src/com/android/dialer/list/
DragDropController.java 10 * Class that handles and combines drag events generated from multiple views, and then fires
22 * drag event. The {@link DragItemContainer} houses the draggable views that this
34 * @return True if the drag is started, false if the drag is cancelled for some reason.
  /external/chromium_org/ash/wm/
default_window_resizer.h 24 // Returns true if the drag will result in changing the window in anyway.
32 virtual void Drag(const gfx::Point& location, int event_flags) OVERRIDE;
39 // Set to true once Drag() is invoked and the bounds of the window change.
drag_details.h 37 // Restore bounds (in screen coordinates) of the window before the drag
59 // Will the drag actually modify the window?
62 // Source of the event initiating the drag.
  /external/chromium_org/chrome/browser/ui/aura/tab_contents/
web_drag_bookmark_handler_aura.h 18 // Chrome needs to intercept content drag events so it can dispatch them to the
44 // The bookmark data for the active drag. Empty when there is no active drag.
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_item_drag_mac.mm 18 // Synthesize a drag event, since we don't have access to the actual event
19 // that initiated a drag (possibly consumed by the Web UI, for example).
32 // Run the drag operation.
  /external/chromium_org/ui/views/
drag_utils.h 25 // Starts a drag operation. This blocks until the drag operation completes.
32 // Returns a canvas that can be used to draw the drag image. Caller owns the
  /frameworks/base/services/core/java/com/android/server/wm/
DragState.java 43 * Drag/drop state
95 if (WindowManagerService.DEBUG_DRAG) Slog.d(WindowManagerService.TAG, "registering drag input channel");
97 Slog.e(WindowManagerService.TAG, "Duplicate register of drag input channel");
99 InputChannel[] channels = InputChannel.openInputChannelPair("drag");
107 mDragApplicationHandle.name = "drag";
113 mDragWindowHandle.name = "drag";
130 // The drag window cannot receive new touches.
133 // The drag window covers the entire display
141 // Pause rotations before a drag.
143 Slog.d(WindowManagerService.TAG, "Pausing rotation during drag");
    [all...]
  /packages/apps/Protips/res/values-tl/
arrays.xml 21 <item msgid="8842580895829057430">"I-drag ang apps sa iyong Home screen.\n Galawin at pindutin nang matagal ang app sa Launcher hanggang sa mag-vibrate ito."</item>
22 <item msgid="8903218961940756528">"Muling isaayos ang iyong Home screen.\n Galawin at pindutin nang matagal ang isang item at kapag nag-vibrate ito, i-drag ito kung saan mo gusto."</item>
23 <item msgid="3123213860439458492">"Alisin ang mga item.\n Galawin at pindutin nang matagal ang isang item at kapag nag-vibrate ito, i-drag sa icon ng basurahan. @drawable/trash"</item>
24 <item msgid="1000948398885889319">"Maramihang Home screen.\n Mag-swipe pakaliwa o pakanan upang lumipat. I-drag ang mga item sa ibang mga screen."</item>
25 <item msgid="424487960942281801">"Tapos na sa widget na ito?\n Galawin at pindutin nang matagal at kapag nag-vibrate ito, i-drag sa icon ng Basura."</item>
  /external/chromium_org/ash/drag_drop/
drag_drop_controller.h 70 // Helper method to create a LinearAnimation object that will run the drag
89 // Helper method to start drag widget flying back animation.
103 // Window that is currently under the drag cursor.
106 // Starting and final bounds for the drag image for the drag cancel animation.
112 // Window that started the drag.
115 // Indicates whether the caller should be blocked on a drag/drop session.
  /external/droiddriver/src/com/google/android/droiddriver/actions/
SwipeAction.java 98 private final boolean drag; field in class:SwipeAction
106 * Defaults timeoutMillis to 1000 and no drag.
115 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis) {
116 this(direction, steps, drag, timeoutMillis, 0.1F, 0.1F, 0.1F, 0.1F);
124 * @param drag whether this is a drag
131 public SwipeAction(PhysicalDirection direction, int steps, boolean drag, long timeoutMillis,
136 this.drag = drag;
195 if (drag) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 50 drag(vt, 100, 200, 100, 200, 10, t, 300); method
65 drag(vt, 100, 200, 100, 200, 15, t, 400, new AccelerateInterpolator()); method
76 drag(vt, 100, 200, 100, 200, 15, t, 400, new DecelerateInterpolator()); method
88 drag(vt, 100, 200, 200, 200, 15, t, 400); method
100 drag(vt, 200, 200, 100, 200, 15, t, 400); method
116 drag(vt, 100, 200, 100, 200, 2, t, 100); method
131 drag(vt, 100, 200, 100, 200, 10, t, 400); // 10 steps over 400ms method
136 drag(vt, 100, 200, 100, 200, 20, t, 400); // 20 steps over 400ms method
153 drag(vt, 100, 200, 100, 200, 10, t, 400); method
158 drag(vt, 100, 200, 100, 200, 10, t + 3600*1000, 400); // on hour late method
175 drag(vt, 100, 200, 100, 200, 10, t, 400); method
180 drag(vt, 200, 300, 200, 300, 10, t, 400); \/\/ 100px further method
197 drag(vt, 100, 200, 100, 200, 10, t, 300); method
216 drag(vt, 100, 200, 100, 200, 10, t, 300); method
232 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, method in class:VelocityTest
234 drag(vt, startX, endX, startY, endY, steps, startime, duration, new LinearInterpolator()); method
241 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, method in class:VelocityTest
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 61 -webkit-user-drag: element;
78 /* I don't know why this is necessary. -webkit-user-drag: element on .tile
79 * should be enough. If we don't do this, we get 2 drag representations for
82 -webkit-user-drag: none;
95 .tile.drag-representation {
102 .tile.drag-representation.placing > * {
106 /* When a drag finishes while we're not showing the page where the tile
108 .tile.drag-representation.dropped-on-other-page > * {
112 .tile.drag-representation.deleting > * {
118 .tile.drag-representation.placing
    [all...]
  /frameworks/base/core/java/android/view/
DragEvent.java 26 * Represents an event that is sent out by the system at various times during a drag and drop
31 * an action type that indicates the state of the drag and drop operation. This allows a View
37 * During a drag and drop operation, the system displays an image that the user drags. This image
38 * is called a drag shadow. Several action types reflect the position of the drag shadow relative
120 * <p>For a guide to implementing drag and drop features, read the
121 * <a href="{@docRoot}guide/topics/ui/drag-drop.html">Drag and Drop</a> developer guide.</p>
145 * drag and drop operation. The View should return {@code true} from its
150 * this drag. For an operation that doesn't represent data transfer, these methods ma
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
browser_actions_container_view.h 10 // Sent when a user-initiated drag to resize the container is initiated.
13 // Sent when a user-initiated drag is resizing the container.
16 // Sent when a user-initiated drag to resize the container has finished.
31 // drag.
48 // Whether the user is allowed to drag the grippy to the left. NO if all
53 // Whether the user is allowed to drag the grippy to the right. NO if all
  /external/chromium_org/chrome/browser/ui/views/toolbar/
extension_toolbar_menu_view.h 20 // In the event that the WrenchMenu was opened for an Extension Action drag-and-
29 // either |container_| has icons to display or the menu was opened for a drag-
48 // The WrenchMenu, which may need to be closed after a drag-and-drop.
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_drop_target_win.h 25 // DesktopDropTargetWin takes care of managing drag and drop for
69 // keep track of this because Windows will only call our drag enter method
71 // could be multiple aura windows, so we need to generate drag enter events
  /developers/samples/android/ui/views/Elevation/ElevationDrag/
template-params.xml 34 This sample demonstrates a drag and drop action on different shapes. Elevation and
39 <sample_action>Elevation Drag</sample_action>
62 This sample demonstrates a drag and drop action on different shapes. Elevation and
70 This sample demonstrates a drag and drop action on different shapes. Elevation and
  /external/chromium-trace/trace-viewer/src/cc/
layer_tree_host_impl_view.css 15 .lthi-s-view > x-drag-handle {
  /external/chromium-trace/trace-viewer/src/ui/
mouse_mode_selector.html 8 <div class="drag-handle"></div>
  /external/chromium_org/content/browser/browser_plugin/
browser_plugin_embedder.h 66 // Sends EndSystemDrag message to the guest that initiated the last drag/drop
94 // handle a race condition when dropping onto the guest that started the drag
100 // Pointer to the guest that started the drag, used to forward necessary drag
  /external/chromium_org/content/common/
drag_event_source_info.h 14 // Information about the event that started a drag session.
drag_messages.h 5 // IPC messages for drag and drop.
41 // Notifies the renderer when and where the mouse-drag ended.
55 // drag session at the OS level.
63 // The page wants to update the mouse cursor during a drag & drop operation.
  /external/chromium_org/extensions/renderer/resources/
platform_app.css 29 -webkit-user-drag: none;

Completed in 416 milliseconds

1 2 34 5 6 7 8 91011>>