HomeSort by relevance Sort by last modified time
    Searched full:clipboard (Results 76 - 100 of 349) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.h 34 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
38 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragPos, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DragClientQt.h 42 virtual void willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*);
43 virtual void startDrag(DragImageRef, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard*, Frame*, bool linkDrag = false);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
DragClientWinCE.cpp 39 void DragClientWinCE::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
56 void DragClientWinCE::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
DragClientWinCE.h 35 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
40 virtual void startDrag(WebCore::DragImageRef, const WebCore::IntPoint&, const WebCore::IntPoint&, WebCore::Clipboard*, WebCore::Frame*, bool = false);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
DragClientWx.cpp 47 void DragClientWx::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
65 const IntPoint& eventPos, Clipboard*,
DragClientWx.h 35 virtual void willPerformDragSourceAction(WebCore::DragSourceAction, const WebCore::IntPoint&, WebCore::Clipboard*);
41 virtual void startDrag(WebCore::DragImageRef dragImage, const WebCore::IntPoint& dragImageOrigin, const WebCore::IntPoint& eventPos, WebCore::Clipboard*, WebCore::Frame*, bool linkDrag = false);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDragClient.cpp 41 void WebDragClient::willPerformDragSourceAction(DragSourceAction, const IntPoint&, Clipboard*)
56 void WebDragClient::startDrag(DragImageRef, const IntPoint&, const IntPoint&, Clipboard*, Frame*, bool)
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 92 // Writes elements to the clipboard.
95 // Reads bookmarks from the general copy/paste clipboard. Prefers data
107 // the URL and title are written to the clipboard in a format other apps can
113 // Restores this data from the clipboard, returning true on success.
153 // The actual elements written to the clipboard.
156 // The MIME type for the clipboard format for BookmarkNodeData.
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 111 ClipboardManager clipboard = (ClipboardManager) getContext(). local
113 clipboard.setPrimaryClip(clip);
120 ClipboardManager clipboard = (ClipboardManager) getContext().getSystemService( local
122 clipboard.setPrimaryClip(ClipData.newPlainText(null, text));
137 ClipboardManager clipboard = (ClipboardManager) getContext().getSystemService( local
139 return clipboard.getPrimaryClip();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ClipboardSupport.java 35 import org.eclipse.swt.dnd.Clipboard;
47 * The {@link ClipboardSupport} class manages the native clipboard, providing operations
48 * to copy, cut and paste view items, and can answer whether the clipboard contains
54 /** SWT clipboard instance. */
55 private Clipboard mClipboard;
62 * @param canvas The {@link LayoutCanvas} to provide clipboard support for.
68 mClipboard = new Clipboard(parent.getDisplay());
86 * selection both as text and as {@link SimpleElement}s in the clipboard.
90 * @param selection A list of selection items to add to the clipboard;
136 * the clipboard. Finally it uses {@link #deleteSelection(String, List)} t
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ChooseAssetTypePage.java 28 import org.eclipse.swt.dnd.Clipboard;
119 mClipboardButton.setText("Copy Name to Clipboard");
174 Clipboard clipboard = new Clipboard(getShell().getDisplay()); local
176 clipboard.setContents(
179 clipboard.dispose();
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac.h 22 class Clipboard;
113 // Helper to get appropriate contents from |clipboard|. Returns
114 // empty string if no appropriate data is found on |clipboard|.
115 static string16 GetClipboardText(ui::Clipboard* clipboard);
  /external/webkit/Source/WebCore/dom/
Event.h 27 #include "Clipboard.h"
100 Clipboard* clipboardData() const { return isClipboardEvent() ? clipboard() : 0; }
168 virtual Clipboard* clipboard() const { return 0; } function in class:WebCore::Event
  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObject.cpp 104 if (m_clipboardType == Clipboard::CopyAndPaste) {
132 if (m_clipboardType == Clipboard::CopyAndPaste) {
156 if (m_clipboardType == Clipboard::CopyAndPaste) {
232 if (m_clipboardType == Clipboard::CopyAndPaste) {
241 ChromiumDataObject::ChromiumDataObject(Clipboard::ClipboardType clipboardType)
DataTransferItemsChromium.cpp 36 #include "Clipboard.h"
42 PassRefPtr<DataTransferItemsChromium> DataTransferItemsChromium::create(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context)
47 DataTransferItemsChromium::DataTransferItemsChromium(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context)
WritableDataObject.cpp 39 PassRefPtr<WritableDataObject> WritableDataObject::create(Clipboard::ClipboardType clipboardType)
44 WritableDataObject::WritableDataObject(Clipboard::ClipboardType clipboardType)
79 if (m_clipboardType == Clipboard::CopyAndPaste) {
  /external/webkit/Source/WebCore/platform/haiku/
PasteboardHaiku.cpp 39 #include <Clipboard.h>
64 AutoClipboardLocker(BClipboard* clipboard)
65 : m_clipboard(clipboard)
66 , m_isLocked(clipboard && clipboard->Lock())
  /frameworks/base/services/java/com/android/server/
ClipboardService.java 43 * Implementation of the clipboard for copy and paste.
60 * Instantiates the clipboard.
68 permOwner = mAm.newUriPermissionOwner("clipboard");
70 Slog.w("clipboard", "AM dead", e);
81 Slog.w("clipboard", "Exception: ", e);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 26 import org.eclipse.swt.dnd.Clipboard;
44 private final Clipboard mClipboard;
46 public PasteAction(AndroidXmlEditor editor, Clipboard clipboard, UiElementNode ui_node) {
49 mClipboard = clipboard;
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler.h 80 // Handler of "copy-clipboard" signal.
83 // Handler of "cut-clipboard" signal.
101 // Handler of "paste-clipboard" signal.
  /external/webkit/Source/WebCore/page/win/
EventHandlerWin.cpp 47 #include "Clipboard.h"
94 PassRefPtr<Clipboard> EventHandler::createDraggingClipboard() const
101 return ClipboardWin::create(Clipboard::DragAndDrop, dataObject.get(), ClipboardWritable, m_frame);
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.cpp 40 PassRefPtr<Clipboard> Clipboard::create(ClipboardAccessPolicy, DragData*, Frame*)
46 : Clipboard(policy, clipboardType)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragClientWin.cpp 62 void WebDragClient::startDrag(DragImageRef image, const IntPoint& imageOrigin, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
64 COMPtr<IDataObject> dataObject = static_cast<ClipboardWin*>(clipboard)->dataObject();
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 63 // and now it's come time to put the data on the clipboard.
68 // the clipboard before it exits.
87 // make a dummy HWND to be the Windows clipboard's owner
174 // write to clipboard in format com.apple.safari.bookmarkdata to be able to paste into the bookmarks view with appropriate title
182 // write to clipboard in format CF_HTML to be able to paste into contenteditable areas as a link
269 // get data off of clipboard
  /external/webkit/Source/WebCore/page/
EventHandler.h 50 class Clipboard;
130 bool updateDragAndDrop(const PlatformMouseEvent&, Clipboard*);
131 void cancelDragAndDrop(const PlatformMouseEvent&, Clipboard*);
132 bool performDragAndDrop(const PlatformMouseEvent&, Clipboard*);
259 RefPtr<Clipboard> m_dragClipboard; // used on only the source side of dragging
264 bool canHandleDragAndDropForTarget(DragAndDropHandleType, Node* target, const PlatformMouseEvent&, Clipboard*, bool* accepted = 0);
266 PassRefPtr<Clipboard> createDraggingClipboard() const;
320 bool dispatchDragEvent(const AtomicString& eventType, Node* target, const PlatformMouseEvent&, Clipboard*);

Completed in 296 milliseconds

1 2 34 5 6 7 8 91011>>