HomeSort by relevance Sort by last modified time
    Searched defs:drop (Results 1 - 25 of 52) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DropGesture.java 23 * A {@link DropGesture} is a {@link Gesture} which deals with drag and drop, so
25 * "valid", and in general gets access to the system drag and drop data
31 * The cursor has entered the drop target boundaries.
33 * @param event The {@link DropTargetEvent} for this drag and drop event
40 * The cursor is moving over the drop target.
42 * @param event The {@link DropTargetEvent} for this drag and drop event
52 * @param event The {@link DropTargetEvent} for this drag and drop event
59 * The cursor has left the drop target boundaries OR the drop has been
62 * @param event The {@link DropTargetEvent} for this drag and drop even
85 public void drop(final DropTargetEvent event) { method in class:DropGesture
    [all...]
MoveGesture.java 52 /** Overlay which paints the drag & drop feedback. */
58 * The top view right under the drag'n'drop cursor.
59 * This can only be null during a drag'n'drop when there is no view under the cursor
66 * drag'n'drop that happens within the same instance of Eclipse.
68 * In the event that the drag and drop happens between different instances of Eclipse
76 * accept drag'n'drop so its parent layout became the target drag'n'drop receiver.
79 * This can be null if no view under the cursor accepted the drag'n'drop or if the node
85 * The latest drop feedback returned by IViewRule.onDropEnter/Move.
148 the drag & drop code seems to steal keyboard events
311 public void drop(final DropTargetEvent event) { method in class:MoveGesture
    [all...]
GestureManager.java 69 /** A listener for drop target events. */
89 * key in order to tweak the current drop position)
97 * key in order to tweak the current drop position)
116 * because even on a drop we'll receive a
117 * {@link DropTargetListener#dragLeave} right before the drop, and we need
118 * to restore it in the drop. Therefore, when we lose a {@link DropGesture}
192 * @param dropTarget The drop target in the {@link LayoutCanvas} to listen
216 * @param dropTarget The drop target in the {@link LayoutCanvas} to stop
483 // Mouse Up shouldn't be delivered in the middle of a drag & drop -
487 // the drag & drop operation, so ignore this event
671 public void drop(final DropTargetEvent event) { method in class:GestureManager.CanvasDropListener
679 ((DropGesture) gesture).drop(event); method
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
SkiaImageFilterBuilder.cpp 180 const DropShadowFilterOperation& drop = toDropShadowFilterOperation(op); local
181 filters->appendDropShadowFilter(blink::WebPoint(drop.x(), drop.y()), drop.stdDeviation(), drop.color().rgb());
  /external/chromium_org/chrome/renderer/
external_host_bindings.cc 83 bool drop = (document_origin.is_valid() != target_origin.is_valid()); local
85 if (!drop) {
88 drop = (document_url.spec().compare(target) != 0);
90 drop = (document_origin != target_origin);
94 if (drop) {
  /external/chromium_org/third_party/zlib/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
206 drop = 0; /* current bits to drop from code for index */
218 this.bits = (unsigned char)(len - drop);
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 45 unsigned drop; /* code bits to drop for sub-table */ local
146 with length len. That code is converted to an index by dropping drop
147 bits off of the bottom. For codes where len is less than drop + curr,
148 those top drop + curr - len bits are incremented through all values to
154 new sub-table should be started. drop is zero when the root table is
155 being filled, and drop is root when sub-tables are being filled.
199 drop = 0; /* current bits to drop from code for index */
212 this.bits = (unsigned char)(len - drop);
    [all...]
  /external/zlib/src/
inftrees.c 45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
205 drop = 0; /* current bits to drop from code for index */
218 here.bits = (unsigned char)(len - drop);
    [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/bluetooth/bluedroid/stack/avrc/
avrc_api.c 82 /* else drop the unknown event*/
353 BOOLEAN drop = FALSE; local
428 drop = 5;
487 drop = 3;
491 drop = 1;
494 drop = 4;
504 drop = 2;
510 return drop;
531 BOOLEAN drop = FALSE; local
583 p_rsp = p_pkt; /* this also sets free = FALSE, drop = TRUE *
    [all...]
  /external/chromium_org/media/filters/
ffmpeg_audio_decoder.cc 455 // Currently Vorbis is the only codec that causes us to drop samples.
456 // If we have to drop samples it always means the timeline starts at 0.
498 // If there are frames to drop, get rid of as many as we can.
500 int drop = std::min(output->frame_count(), output_frames_to_drop_); local
501 output->TrimStart(drop);
502 output_frames_to_drop_ -= drop;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.cc 255 const int drop = (lowmark > 1) ? lowmark/2 : 1; local
256 ReleaseToCentralCache(list, cl, drop);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.cc 249 const int drop = (lowmark > 1) ? lowmark/2 : 1; local
250 ReleaseToCentralCache(list, cl, drop);
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 81 template<place > class ...Drop>
84 typedef types<typename Drop<_>::type...> drop; typedef in struct:ParameterPackExpansions::takedrop_impl::inner
92 template<unsigned N, typename...Ts> struct drop { struct in namespace:ParameterPackExpansions
94 template inner<wrap<Ts>::template inner...>::drop; // expected-error {{too few template arguments}}
101 using D1 = drop<3, int, char, double, long>::type;
109 using D2 = drop<4, int, char, double, long>::type;
113 using D3 = drop<5, int, char, double, long>::type; // expected-note {{in instantiation of}}
  /external/chromium_org/chrome_frame/
chrome_frame_activex.cc 240 bool drop = true; local
254 drop = false;
261 if (drop)
439 // Drop privileged mode on uninitialization.
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstance.h 131 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), drop); member in class:WebCore::SVGElementInstance
  /external/kernel-headers/original/linux/netfilter/
nf_conntrack_common.h 153 unsigned int drop; member in struct:ip_conntrack_stat
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 159 // another thread). Same check is applied in commit() and drop()
177 public synchronized void drop(Thread t) { method in class:Profile.Watchdog
213 // drop() is called, and those samples are recorded or ignored as a result.
223 public static void drop() { method in class:Profile
224 sWatchdog.drop(Thread.currentThread());
  /external/chromium_org/third_party/libxslt/libxslt/
xsltutils.c 2172 xsltDropCallCallback drop; member in struct:_xsltDebuggerCallbacks
    [all...]
  /external/kernel-headers/original/linux/
quota.h 248 int (*drop) (struct inode *); member in struct:dquot_operations
  /external/libxslt/libxslt/
xsltutils.c 2172 xsltDropCallCallback drop; member in struct:_xsltDebuggerCallbacks
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 794 media::Metadata::Filter allow, drop; local
797 unmarshallFilter(filter, &drop, &status)) {
801 mMetadataDrop = drop;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 91 /** Who can receive drop events */
450 drop(dragLayerX, dragLayerY); method
487 // Drop on someone?
603 drop(dragLayerX, dragLayerY);
655 // Drop onto the fling-to-delete target
659 // "drop"
671 private void drop(float x, float y) {
747 * Add a DropTarget to the list of potential places to receive drop events.
754 * Don't send drop events to <em>target</em> any more.
761 * Sets the current fling-to-delete drop target
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragController.java 83 /** Who can receive drop events */
446 drop(dragLayerX, dragLayerY); method
483 // Drop on someone?
600 drop(dragLayerX, dragLayerY);
652 // Drop onto the fling-to-delete target
656 // "drop"
668 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...]

Completed in 2474 milliseconds

1 2 3