/external/chromium/chrome/browser/ui/views/download/ |
download_item_view.h | 231 // Whether we are tracking a possible drag. 234 // Position that a possible drag started at.
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/ |
scrollbar.edc | 188 signal: "drag"; 365 signal: "drag";
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
EventSender.cpp | 33 // Some notes about drag and drop handling: 34 // Windows drag and drop goes through a system call to doDragDrop. At that 38 // start a drag (by calling EvenSendingController::doDragDrop), we take the 284 // events so we can simulate drag & drop. 300 // The test should have finished a drag and the mouse button state. 437 // If we're in a drag operation, complete it. 828 // Provide a drag source. 834 // Make the rest of eventSender think a drag is in progress. [all...] |
/frameworks/base/docs/html/tools/help/ |
adt.jd | 75 user interfaces with a drag and drop interface.</dd> 162 <dd>Edit and design your XML layout files with a drag and drop interface. The layout editor 270 you can drag onto the canvas. The palette shows rendered previews of the 298 <p>The canvas is the area where you can drag and drop UI widgets from the palette to design your 301 the <a href="#configuration-chooser">configuration chooser</a>. You can also drag and drop 371 <li>Preview drag and drop location: When you drag and drop a UI widget onto the canvas, ruler 408 <p>The palette contains the UI widgets that you can drag and drop onto the canvas and add to your
|
MonkeyDevice.jd | 107 <a href="#drag">drag</a> 115 Simulates a drag gesture (touch, hold, and move) on this device's screen. 549 <A NAME="drag"></A> 555 <span class="sympad">drag</span> 568 Simulates a drag gesture (touch, hold, and move) on this device's screen. 577 The starting point of the drag gesture, in the form of a <em>tuple</em> 584 The end point of the drag gesture, in the form of a <em>tuple</em> (x,y) 590 <td>The duration of the drag gesture in seconds. The default is 1.0 seconds.</td> [all...] |
/packages/apps/Launcher2/res/values/ |
dimens.xml | 90 <!-- Drag padding to add to the bottom of drop targets --> 99 the drag view should be offset from the position of the original view. -->
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
EventSender.cpp | 505 "signal::drag-end", dragWithFilesDragEndCallback, draggedFilesURIList, 506 "signal::drag-data-get", dragWithFilesDragDataGetCallback, draggedFilesURIList, 567 // running GDK internals don't know that the drag has started yet. Pump 572 // Simulate a drag motion on the top-level GDK window. 584 // the end of the drag. [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ExpandHelper.java | 237 float drag = mSGD.getFocusY() - mInitialTouchFocusY; local 238 drag *= USE_DRAG ? 1f : 0f; 239 drag *= mGravity == Gravity.BOTTOM ? -1f : 1f; 240 float pull = Math.abs(drag) + Math.abs(span) + 1f; 241 float hand = drag * Math.abs(drag) / pull + span * Math.abs(span) / pull;
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
InteractionController.java | 425 return swipe(downX, downY, upX, upY, steps, false /*drag*/); 435 * @param drag when true, the swipe becomes a drag swipe 438 public boolean swipe(int downX, int downY, int upX, int upY, int steps, boolean drag) { 453 if (drag) 465 if (drag)
|
/frameworks/support/v4/java/android/support/v4/widget/ |
ViewDragHelper.java | 35 * of useful operations and state tracking for allowing a user to drag and reposition 108 // Current drag state; idle, dragging or settling 111 // Distance to travel before a drag may begin 150 * Called when the drag state changes. See the <code>STATE_*</code> constants 153 * @param state The new drag state 162 * Called when the captured view's position changes as the result of a drag or settle. 217 * Called when the given edge may become locked. This can happen if an edge drag 230 * Called when the user has started a deliberate drag away from one 277 * is permitted to drag the given view with the indicated pointer. 355 * the start of a drag. Larger values are more sensitive. 1.0f is normal [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
MessageListFragment.java | 193 * Called when a drag & drop is initiated. 195 * @return true if drag & drop is allowed 200 * Called when a drag & drop is ended. 608 // This is tentative drag & drop UI 615 /** The x location of any touch event; used to ensure the drag overlay is drawn correctly */ 634 /** Vertical offset of the drag view */ 645 // TODO: Can we define a layout for the contents of the drag area? 716 // Save the touch location to draw the drag overlay at the correct location 734 // Additionally, check to see if we can drag the item. 746 // Start drag&drop [all...] |
/frameworks/support/v4/java/android/support/v4/view/ |
ViewPager.java | [all...] |
/external/chromium/chrome/browser/resources/ntp/ |
most_visited.js | 70 el.addEventListener('drag', this.handleDrag_.bind(this)); 351 // Make the drag over item move 15px towards the source. The movement 467 // Moves the drag item making sure that it is not displayed outside the 504 // focus one has to call preventDefault but this also prevents the drag 506 // left mouse button drag.
|
/external/chromium-trace/trace-viewer/src/ |
timeline_track_view.js | 87 this.dragBox_.className = 'drag-box'; 387 ' drag : Select slices (with ' + mod + 389 ' drag + shift : Select all slices vertically\n\n'; 598 // Update the drag box 618 // Figure out extents of the drag.
|
/external/webkit/Source/WebKit/win/ |
FullscreenVideoController.cpp | 160 void HUDSlider::drag(const IntPoint& point, bool start) function in class:HUDSlider 164 // But if we click the button, we need to drag relative to where we clicked down. We only need 632 m_volumeSlider.drag(convertedPoint, true); 636 m_timeSlider.drag(convertedPoint, true); 655 m_hitWidget->drag(convertedPoint, false);
|
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselView.java | 50 // Drag relative to x coordinate of motion on screen 52 // Drag relative to projected point on plane of carousel 54 // Drag relative to projected point on inside (far point) of cylinder centered around carousel 56 // Drag relative to projected point on outside (near point) of cylinder centered around carousel 188 * not be handled any way other than as a continued drag.
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
_index.html | 260 <h3>Drag and Drop</h3> 262 <dt><a href="DragAndDropDemo.html">Drag and Drop Demo</a></dt> 263 <dd>Demonstrates how to perform drag and drop using an OnDragListener. (Uses the <a
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_controller.h | 91 // Experimentally a drag hover open delay needs to be bigger than a 92 // normal (non-drag) menu hover open such as used in the bookmark folder. 228 // When doing a drag, this is folder button "hovered over" which we
|
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
web_drag_source.mm | 175 NOTREACHED() << "No drag-and-drop data available for lazy write."; 230 NOTREACHED() << "Asked for a drag pasteboard type we didn't offer."; 326 NOTREACHED() << "No drag-and-drop data available for promised file.";
|
/external/webkit/LayoutTests/platform/android/ |
test_expectations.txt | 131 fast/events/drag-in-frames.html FAIL // requires eventSender.mouseDown(),mouseUp() 132 fast/events/drag-outside-window.html FAIL // requires eventSender.mouseDown(),mouseUp() 150 fast/forms/drag-into-textarea.html FAIL // requires eventSender.mouseDown(),mouseUp()
|
/frameworks/base/core/java/android/widget/ |
AbsSeekBar.java | 141 * the user can drag back and forth indicating the current value by its position. 455 * Tries to claim the user's drag motion, and requests disallowing any 456 * ancestors from stealing events in the drag.
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
DeleteDropTarget.java | 255 * Creates an animation from the current drag view to the delete trash icon. 272 final float x1 = from.left; // drag view t/l 309 * Creates an animation from the current drag view along its current velocity vector.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridDropHandler.java | 52 * The {@link GridDropHandler} handles drag and drop operations into and within a 73 * Computes the best horizontal and vertical matches for a drag to the given position. 75 * @param feedback a {@link DropFeedback} object containing drag state like the drag 76 * bounds and the drag baseline 275 // TODO: Only match the right hand side if the drag bounds fit fully within the [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
ContentFragment.java | 77 // Handle drag events when a list item is dragged into the view 229 // Determine whether to continue processing drag and drop based on the
|
TitlesFragment.java | 113 // Enable drag and dropping 184 /** This defines how the draggable list items appear during a drag event */
|