OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clipboard
(Results
101 - 125
of
349
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/WebCore/platform/android/
ClipboardAndroid.h
30
#include "
Clipboard
.h"
38
class ClipboardAndroid : public
Clipboard
, public CachedResourceClient {
/external/webkit/Source/WebCore/platform/brew/
ClipboardBrew.h
31
#include "
Clipboard
.h"
37
class ClipboardBrew : public
Clipboard
, public CachedResourceClient {
/external/webkit/Source/WebCore/platform/haiku/
ClipboardHaiku.h
30
#include "
Clipboard
.h"
37
class ClipboardHaiku : public
Clipboard
{
ClipboardHaiku.cpp
36
#include <app/
Clipboard
.h>
45
PassRefPtr<
Clipboard
>
Clipboard
::create(ClipboardAccessPolicy policy, DragData*, Frame*)
51
:
Clipboard
(policy, clipboardType)
/external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h
30
#include "
Clipboard
.h"
46
class ClipboardMac : public
Clipboard
, public CachedResourceClient {
/external/webkit/Source/WebCore/platform/wx/
ClipboardWx.h
29
#include "
Clipboard
.h"
36
class ClipboardWx : public
Clipboard
{
/external/webkit/Source/WebKit/efl/WebCoreSupport/
DragClientEfl.h
42
virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::
Clipboard
*);
47
virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::
Clipboard
*, WebCore::Frame*, bool linkDrag = false);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DragClientGtk.h
47
virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::
Clipboard
*);
52
virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::
Clipboard
*, WebCore::Frame*, bool linkDrag = false);
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.h
40
virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::
Clipboard
*);
41
virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::
Clipboard
*, WebCore::Frame*, bool);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDragClient.h
44
virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::
Clipboard
*);
48
virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::
Clipboard
*, WebCore::Frame*, bool linkDrag = false);
/external/chromium/chrome/browser/ui/views/
chrome_views_delegate.h
24
virtual ui::
Clipboard
* GetClipboard() const;
/external/chromium/webkit/glue/
webdropdata_win.cc
12
#include "ui/base/
clipboard
/clipboard_util_win.h"
/external/webkit/Source/WebCore/platform/chromium/
DataTransferItemChromium.cpp
37
#include "
Clipboard
.h"
45
PassRefPtr<DataTransferItemChromium> DataTransferItemChromium::createFromPasteboard(PassRefPtr<
Clipboard
> owner, ScriptExecutionContext* context, const String& type)
52
PassRefPtr<DataTransferItemChromium> DataTransferItemChromium::create(PassRefPtr<
Clipboard
> owner,
60
DataTransferItemChromium::DataTransferItemChromium(PassRefPtr<
Clipboard
> owner, ScriptExecutionContext* context, DataSource source, const String& kind, const String& type, const String& data)
ClipboardChromium.cpp
57
// We provide the IE
clipboard
types (URL and Text), and the
clipboard
types specified in the WHATWG Web Applications 1.0 draft
68
PassRefPtr<
Clipboard
>
Clipboard
::create(ClipboardAccessPolicy policy, DragData* dragData, Frame* frame)
77
:
Clipboard
(policy, clipboardType)
288
// Put img tag on the
clipboard
referencing the image
ClipboardChromium.h
33
#include "
Clipboard
.h"
44
class ClipboardChromium : public
Clipboard
, public CachedResourceClient {
/external/webkit/Source/WebCore/platform/gtk/
DataObjectGtk.cpp
161
DataObjectGtk* DataObjectGtk::forClipboard(GtkClipboard*
clipboard
)
165
if (!objectMap.contains(
clipboard
)) {
167
objectMap.set(
clipboard
, dataObject);
171
HashMap<GtkClipboard*, RefPtr<DataObjectGtk> >::iterator it = objectMap.find(
clipboard
);
/external/chromium/chrome/browser/bookmarks/
bookmark_node_data_unittest.cc
53
// Writes a URL to the
clipboard
and make sure BookmarkNodeData can correctly
73
// Write a single node representing a URL to the
clipboard
.
107
// Writing should also put the URL and title on the
clipboard
.
115
// Tests writing a folder to the
clipboard
.
208
// Write the nodes to the
clipboard
.
/external/chromium/chrome/browser/tab_contents/
render_view_context_menu.h
121
// Copy to the
clipboard
an image located at a point in the RenderView
127
// Writes the specified text/url to the system
clipboard
/external/webkit/Source/WebCore/page/android/
EventHandlerAndroid.cpp
109
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
111
return PassRefPtr<
Clipboard
>(0);
/external/webkit/Source/WebCore/page/efl/
EventHandlerEfl.cpp
98
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
100
return ClipboardEfl::create(ClipboardWritable,
Clipboard
::DragAndDrop);
/external/webkit/Source/WebCore/page/gtk/
EventHandlerGtk.cpp
97
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
99
return ClipboardGtk::create(ClipboardWritable, DataObjectGtk::create(),
Clipboard
::DragAndDrop, m_frame);
/external/webkit/Source/WebCore/page/haiku/
EventHandlerHaiku.cpp
109
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
111
return ClipboardHaiku::create(ClipboardWritable,
Clipboard
::DragAndDrop);
/external/webkit/Source/WebCore/page/qt/
EventHandlerQt.cpp
101
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
103
return ClipboardQt::create(ClipboardWritable,
Clipboard
::DragAndDrop);
/external/webkit/Source/WebCore/page/wx/
EventHandlerWx.cpp
117
PassRefPtr<
Clipboard
> EventHandler::createDraggingClipboard() const
119
return ClipboardWx::create(ClipboardWritable,
Clipboard
::DragAndDrop);
/external/webkit/Source/WebCore/platform/win/
ClipboardWin.h
31
#include "
Clipboard
.h"
44
class ClipboardWin : public
Clipboard
, public CachedResourceClient {
Completed in 589 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>