HomeSort by relevance Sort by last modified time
    Searched defs:pasteboard (Results 1 - 9 of 9) sorted by null

  /external/webkit/WebCore/platform/mac/
ClipboardMac.h 48 static PassRefPtr<ClipboardMac> create(bool forDragging, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame* frame)
50 return adoptRef(new ClipboardMac(forDragging, pasteboard, policy, frame));
79 NSPasteboard *pasteboard() { return m_pasteboard.get(); } function in class:WebCore::ClipboardMac
  /external/webkit/WebCore/platform/haiku/
PasteboardHaiku.cpp 28 #include "Pasteboard.h"
44 Pasteboard::Pasteboard()
48 Pasteboard* Pasteboard::generalPasteboard()
50 static Pasteboard* pasteboard = new Pasteboard(); local
51 return pasteboard;
54 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame
    [all...]
  /external/webkit/WebCore/platform/wx/
PasteboardWx.cpp 28 #include "Pasteboard.h"
43 Pasteboard::Pasteboard()
47 Pasteboard* Pasteboard::generalPasteboard()
49 static Pasteboard* pasteboard = new Pasteboard(); local
50 return pasteboard;
53 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame
    [all...]
  /external/webkit/WebCore/platform/chromium/
PasteboardChromium.cpp 32 #include "Pasteboard.h"
55 Pasteboard* Pasteboard::generalPasteboard()
57 static Pasteboard* pasteboard = new Pasteboard; local
58 return pasteboard;
61 Pasteboard::Pasteboard()
66 void Pasteboard::clear(
    [all...]
  /external/webkit/WebCore/platform/qt/
PasteboardQt.cpp 29 #include "Pasteboard.h"
48 Pasteboard::Pasteboard()
53 Pasteboard* Pasteboard::generalPasteboard()
55 static Pasteboard* pasteboard = 0; local
56 if (!pasteboard)
57 pasteboard = new Pasteboard();
    [all...]
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 21 #include "Pasteboard.h"
61 if ((gint)info == Pasteboard::generalPasteboard()->m_helper->getWebViewTargetInfoHtml())
76 Pasteboard* Pasteboard::generalPasteboard()
78 static Pasteboard* pasteboard = new Pasteboard(); local
79 return pasteboard;
82 Pasteboard::Pasteboard()
    [all...]
  /external/webkit/WebCore/platform/win/
PasteboardWin.cpp 27 #include "Pasteboard.h"
79 Pasteboard* Pasteboard::generalPasteboard()
81 static Pasteboard* pasteboard = new Pasteboard; local
82 return pasteboard;
85 Pasteboard::Pasteboard()
103 void Pasteboard::clear(
    [all...]
  /external/webkit/WebCore/platform/wince/
PasteboardWince.cpp 29 #include "Pasteboard.h"
78 Pasteboard* Pasteboard::generalPasteboard()
80 static Pasteboard* pasteboard = new Pasteboard; local
81 return pasteboard;
84 Pasteboard::Pasteboard()
102 void Pasteboard::clear(
    [all...]
  /external/webkit/WebKit/chromium/src/
WebViewImpl.cpp 71 #include "Pasteboard.h"
433 Pasteboard* pasteboard = Pasteboard::generalPasteboard(); local
434 bool oldSelectionMode = pasteboard->isSelectionMode();
435 pasteboard->setSelectionMode(true);
437 pasteboard->setSelectionMode(oldSelectionMode);
    [all...]

Completed in 748 milliseconds