Home
last modified time | relevance | path

Searched refs:drag_operation (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/ui/base/dragdrop/
Ddrag_drop_types_win.cc13 int drag_operation = DRAG_NONE; in DropEffectToDragOperation() local
15 drag_operation |= DRAG_LINK; in DropEffectToDragOperation()
17 drag_operation |= DRAG_COPY; in DropEffectToDragOperation()
19 drag_operation |= DRAG_MOVE; in DropEffectToDragOperation()
20 return drag_operation; in DropEffectToDragOperation()
23 uint32 ui::DragDropTypes::DragOperationToDropEffect(int drag_operation) { in DragOperationToDropEffect() argument
25 if (drag_operation & DRAG_LINK) in DragOperationToDropEffect()
27 if (drag_operation & DRAG_COPY) in DragOperationToDropEffect()
29 if (drag_operation & DRAG_MOVE) in DragOperationToDropEffect()
Ddrag_drop_types.h29 static uint32 DragOperationToDropEffect(int drag_operation);
/external/chromium_org/ui/views/widget/
Ddrop_helper.cc31 int drag_operation) { in OnDragOver() argument
39 NotifyDragEntered(data, root_view_location, drag_operation); in OnDragOver()
42 return NotifyDragOver(data, root_view_location, drag_operation); in OnDragOver()
52 int drag_operation) { in OnDrop() argument
58 if (drag_operation == ui::DragDropTypes::DRAG_NONE) { in OnDrop()
67 drag_operation); in OnDrop()
123 int drag_operation) { in NotifyDragEntered() argument
132 drag_operation); in NotifyDragEntered()
138 int drag_operation) { in NotifyDragOver() argument
147 drag_operation); in NotifyDragOver()
Ddrop_helper.h51 int drag_operation);
64 int drag_operation);
87 int drag_operation);
90 int drag_operation);
/external/chromium_org/ui/views/widget/desktop_aura/
Ddesktop_drop_target_win.cc52 int drag_operation = ui::DragDropTypes::DRAG_NONE; in OnDragOver() local
58 drag_operation = delegate->OnDragUpdated(*event); in OnDragOver()
59 return ui::DragDropTypes::DragOperationToDropEffect(drag_operation); in OnDragOver()
70 int drag_operation = ui::DragDropTypes::DRAG_NONE; in OnDrop() local
76 drag_operation = delegate->OnPerformDrop(*event); in OnDrop()
81 return ui::DragDropTypes::DragOperationToDropEffect(drag_operation); in OnDrop()
Ddesktop_drag_drop_client_aurax11.cc144 void MaskOperation(::Atom xdnd_operation, int* drag_operation) const;
334 int drag_operation = ui::DragDropTypes::DRAG_NONE; in GetDragOperation() local
337 MaskOperation(*it, &drag_operation); in GetDragOperation()
340 MaskOperation(suggested_action_, &drag_operation); in GetDragOperation()
342 return drag_operation; in GetDragOperation()
347 int* drag_operation) const { in MaskOperation()
349 *drag_operation |= ui::DragDropTypes::DRAG_COPY; in MaskOperation()
351 *drag_operation |= ui::DragDropTypes::DRAG_MOVE; in MaskOperation()
353 *drag_operation |= ui::DragDropTypes::DRAG_LINK; in MaskOperation()
563 int drag_operation = ui::DragDropTypes::DRAG_NONE; in OnXdndDrop() local
[all …]
Ddesktop_drag_drop_client_aurax11.h161 ::Atom DragOperationToAtom(int drag_operation);
/external/chromium_org/content/test/
Dtest_render_view_host.cc346 blink::WebDragOperationsMask drag_operation = blink::WebDragOperationEvery; in TestOnStartDragging() local
348 OnStartDragging(drop_data, drag_operation, SkBitmap(), gfx::Vector2d(), in TestOnStartDragging()
/external/chromium_org/content/browser/renderer_host/
Drender_view_host_impl.h405 void OnUpdateDragCursor(blink::WebDragOperation drag_operation);
/external/chromium_org/ui/views/controls/textfield/
Dtextfield.cc867 int drag_operation = controller_->OnDrop(event.data()); in OnPerformDrop() local
868 if (drag_operation != ui::DragDropTypes::DRAG_NONE) in OnPerformDrop()
869 return drag_operation; in OnPerformDrop()
/external/chromium_org/content/renderer/
Drender_view_impl.h668 blink::WebDragOperation drag_operation);