HomeSort by relevance Sort by last modified time
    Searched refs:drop (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/bluetooth/bluez/input/
server.c 156 goto drop;
161 goto drop;
174 drop:
  /external/bluetooth/bluez/audio/
manager.c 478 goto drop;
493 goto drop;
497 goto drop;
503 goto drop;
508 goto drop;
515 goto drop;
536 drop:
583 goto drop;
588 goto drop;
593 goto drop;
    [all...]
control.c 762 goto drop;
768 goto drop;
775 goto drop;
783 goto drop;
789 drop:
  /external/chromium/chrome/browser/resources/ntp/
drag_drop_controller.js 20 // point to a valid place to drop an item
38 // Install the 'mousedown' handler, the entry point to drag and drop.
97 // starting drag and drop.
101 // This can't be a drag & drop event if it's not the left mouse button
  /external/iproute2/examples/diffserv/
Edge2 44 police rate 1500kbit burst 90k mtu 9k drop flowid :1
  /external/kernel-headers/original/linux/
capability.h 468 const kernel_cap_t drop)
471 CAP_BOP_ALL(dest, a, drop, &~);
quota.h 248 int (*drop) (struct inode *); member in struct:dquot_operations
  /external/quake/quake/src/QW/server/
server.h 128 qboolean drop; // lose this guy next opportunity member in struct:client_s
352 void SV_DropClient (client_t *drop);
sv_send.c 345 Larger attenuations will drop off. (max 4 attenuation)
714 if (c->drop) {
716 c->drop = false;
751 // drop the client
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 1428 int drop = -1; local
    [all...]
  /external/bluetooth/bluez/network/
server.c 580 goto drop;
587 goto drop;
592 goto drop;
595 goto drop;
598 goto drop;
610 goto drop;
615 drop:
  /external/bluetooth/bluez/serial/
proxy.c 379 goto drop;
398 goto drop;
412 drop:
457 goto drop;
463 goto drop;
477 goto drop;
482 drop:
  /external/bluetooth/bluez/plugins/
pnat.c 300 goto drop;
306 goto drop;
311 drop:
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java 158 // when we use "auto drop on editor activation" option, this click is
312 * Sets drop state of combo.
314 public void doDropDown(boolean drop) {
315 // check, may be we already in this drop state
316 if (drop == isDropped()) {
320 if (!drop) {
  /external/webkit/Source/WebCore/dom/
EventNames.h 65 macro(drop) \
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseQueryView.js 89 accumulateMatches(["SELECT ", "FROM ", "WHERE ", "LIMIT ", "DELETE FROM ", "CREATE ", "DROP ", "TABLE ", "INDEX ", "UPDATE ", "INSERT INTO ", "VALUES ("]);
151 if (trimmedQuery.match(/^create /i) || trimmedQuery.match(/^drop table /i))
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 113 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), drop); member in class:WebCore::SVGElementInstance
  /external/v8/test/mjsunit/regress/
regress-1129.js 37 // Try to compile in UC16 mode, and drop the exception.
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 706 // Draw a drop shadow for the text
715 // Turn off drop shadow
1479 int drop = -1; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 91 /** Who can receive drop events */
449 drop(dragLayerX, dragLayerY); method
486 // Drop on someone?
591 drop(dragLayerX, dragLayerY);
643 // Drop onto the fling-to-delete target
647 // "drop"
659 private void drop(float x, float y) {
735 * Add a DropTarget to the list of potential places to receive drop events.
742 * Don't send drop events to <em>target</em> any more.
749 * Sets the current fling-to-delete drop target
    [all...]
  /packages/apps/Music/src/com/android/music/
TouchInterceptor.java 317 mDropListener.drop(mSrcDragPos, mDragPos);
468 void drop(int from, int to); method in interface:TouchInterceptor.DropListener
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.js 156 document.addEventListener(Grabber.EventType.DROP, appDrop);
174 trash.addEventListener(Grabber.EventType.DROP, appTrash);
410 // Prevent any built-in drag-and-drop support from activating for the
564 // for it - eg. if we drop on it, or the drag is cancelled)
638 * @param {Grabber.Event} e The event from the Grabber indicating the drop.
646 // Mark this drop as handled so that the catch-all drop handler
657 * @param {Grabber.Event} e The event from the Grabber indicating the drop.
753 // case because if we did actually drop an app there, we want to retain that
  /external/webkit/LayoutTests/storage/
test-authorizer.js 16 tx.executeSql("DROP TABLE IF EXISTS Test;");
17 tx.executeSql("DROP INDEX IF EXISTS TestIndex;");
18 tx.executeSql("DROP VIEW IF EXISTS TestView;");
19 tx.executeSql("DROP TRIGGER IF EXISTS TestTrigger;");
89 executeStatement(tx, "DROP INDEX TestIndex;", "SQLITE_DROP_INDEX");
95 executeStatement(tx, "DROP TABLE TestTempTable;", "SQLITE_DROP_TEMP_TABLE");
96 executeStatement(tx, "DROP TRIGGER TestTempTrigger;", "SQLITE_DROP_TEMP_TRIGGER");
97 executeStatement(tx, "DROP VIEW TestTempView;", "SQLITE_DROP_TEMP_VIEW");
98 executeStatement(tx, "DROP TRIGGER TestTrigger;", "SQLITE_DROP_TRIGGER");
99 executeStatement(tx, "DROP VIEW TestView;", "SQLITE_DROP_VIEW")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureManager.java 68 /** A listener for drop target events. */
88 * key in order to tweak the current drop position)
96 * key in order to tweak the current drop position)
115 * because even on a drop we'll receive a
116 * {@link DropTargetListener#dragLeave} right before the drop, and we need
117 * to restore it in the drop. Therefore, when we lose a {@link DropGesture}
191 * @param dropTarget The drop target in the {@link LayoutCanvas} to listen
215 * @param dropTarget The drop target in the {@link LayoutCanvas} to stop
474 // Mouse Up shouldn't be delivered in the middle of a drag & drop -
478 // the drag & drop operation, so ignore this event
644 public void drop(final DropTargetEvent event) { method in class:GestureManager.CanvasDropListener
652 ((DropGesture) gesture).drop(event); method
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.js 152 document.addEventListener(Grabber.EventType.DROP, appDrop);
170 trash.addEventListener(Grabber.EventType.DROP, appTrash);
454 // for it - eg. if we drop on it, or the drag is cancelled)
528 * @param {Grabber.Event} e The event from the Grabber indicating the drop.
536 // Mark this drop as handled so that the catch-all drop handler
547 * @param {Grabber.Event} e The event from the Grabber indicating the drop.
643 // case because if we did actually drop an app there, we want to retain that

Completed in 571 milliseconds

12 3 4