HomeSort by relevance Sort by last modified time
    Searched refs:drag_operation (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/ui/base/dragdrop/
drag_drop_types_win.cc 13 int drag_operation = DRAG_NONE; local
15 drag_operation |= DRAG_LINK;
17 drag_operation |= DRAG_COPY;
19 drag_operation |= DRAG_MOVE;
20 return drag_operation;
23 uint32 ui::DragDropTypes::DragOperationToDropEffect(int drag_operation) {
25 if (drag_operation & DRAG_LINK)
27 if (drag_operation & DRAG_COPY)
29 if (drag_operation & DRAG_MOVE)
drag_drop_types.h 29 static uint32 DragOperationToDropEffect(int drag_operation);
  /external/chromium_org/ui/views/widget/
drop_helper.h 51 int drag_operation);
61 // supplying the return value from OnDragOver as the drag_operation.
64 int drag_operation);
87 int drag_operation);
90 int drag_operation);
drop_helper.cc 31 int drag_operation) {
39 NotifyDragEntered(data, root_view_location, drag_operation);
42 return NotifyDragOver(data, root_view_location, drag_operation);
52 int drag_operation) {
58 if (drag_operation == ui::DragDropTypes::DRAG_NONE) {
67 drag_operation);
123 int drag_operation) {
132 drag_operation);
138 int drag_operation) {
147 drag_operation);
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_drop_target_win.cc 52 int drag_operation = ui::DragDropTypes::DRAG_NONE; local
58 drag_operation = delegate->OnDragUpdated(*event);
59 return ui::DragDropTypes::DragOperationToDropEffect(drag_operation);
70 int drag_operation = ui::DragDropTypes::DRAG_NONE; local
76 drag_operation = delegate->OnPerformDrop(*event);
81 return ui::DragDropTypes::DragOperationToDropEffect(drag_operation);
desktop_drag_drop_client_aurax11.cc 143 // |drag_operation|.
144 void MaskOperation(::Atom xdnd_operation, int* drag_operation) const;
334 int drag_operation = ui::DragDropTypes::DRAG_NONE; local
337 MaskOperation(*it, &drag_operation);
340 MaskOperation(suggested_action_, &drag_operation);
342 return drag_operation;
347 int* drag_operation) const {
349 *drag_operation |= ui::DragDropTypes::DRAG_COPY;
351 *drag_operation |= ui::DragDropTypes::DRAG_MOVE;
353 *drag_operation |= ui::DragDropTypes::DRAG_LINK
563 int drag_operation = ui::DragDropTypes::DRAG_NONE; local
974 int drag_operation = ui::DragDropTypes::DRAG_NONE; local
    [all...]
desktop_drag_drop_client_aurax11.h 161 ::Atom DragOperationToAtom(int drag_operation);
  /external/chromium_org/content/test/
test_render_view_host.cc 346 blink::WebDragOperationsMask drag_operation = blink::WebDragOperationEvery; local
348 OnStartDragging(drop_data, drag_operation, SkBitmap(), gfx::Vector2d(),
  /external/chromium_org/content/browser/renderer_host/
render_view_host_impl.h 405 void OnUpdateDragCursor(blink::WebDragOperation drag_operation);
  /external/chromium_org/ui/views/controls/textfield/
textfield.cc 867 int drag_operation = controller_->OnDrop(event.data()); local
868 if (drag_operation != ui::DragDropTypes::DRAG_NONE)
869 return drag_operation;
    [all...]
  /external/chromium_org/content/renderer/
render_view_impl.h 668 blink::WebDragOperation drag_operation);
    [all...]

Completed in 121 milliseconds