OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DragController
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/views/
drag_controller.h
21
//
DragController
is responsible for writing drag data for a view, as well as
22
// supplying the supported drag operations. Use
DragController
if you don't
24
class VIEWS_EXPORT
DragController
{
44
virtual ~
DragController
() {}
/external/chromium_org/third_party/WebKit/Source/core/page/
DragController.h
54
class
DragController
{
55
WTF_MAKE_NONCOPYABLE(
DragController
); WTF_MAKE_FAST_ALLOCATED;
57
~
DragController
();
59
static PassOwnPtr<
DragController
> create(Page*, DragClient*);
80
DragController
(Page*, DragClient*);
DragController.cpp
28
#include "core/page/
DragController
.h"
87
const int
DragController
::DragIconRightInset = 7;
88
const int
DragController
::DragIconBottomInset = 3;
131
DragController
::
DragController
(Page* page, DragClient* client)
144
DragController
::~
DragController
()
148
PassOwnPtr<
DragController
>
DragController
::create(Page* page, DragClient* client)
150
return adoptPtr(new
DragController
(page, client))
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
DragController.java
43
public class
DragController
{
44
private static final String TAG = "Launcher.
DragController
";
132
* @param dragAction The drag action: either {@link
DragController
#DRAG_ACTION_MOVE}
133
* or {@link
DragController
#DRAG_ACTION_COPY}
148
public
DragController
(Launcher launcher) {
422
Log.d(Launcher.TAG, "
DragController
.onInterceptTouchEvent " + ev + " mDragging="
/packages/apps/Launcher3/src/com/android/launcher3/
DragController.java
37
public class
DragController
{
38
private static final String TAG = "Launcher.
DragController
";
123
* @param dragAction The drag action: either {@link
DragController
#DRAG_ACTION_MOVE}
124
* or {@link
DragController
#DRAG_ACTION_COPY}
139
public
DragController
(Launcher launcher) {
415
Log.d(Launcher.TAG, "
DragController
.onInterceptTouchEvent " + ev + " mDragging="
Completed in 107 milliseconds