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

  /external/webkit/WebCore/platform/
Pasteboard.h 79 class Pasteboard : public Noncopyable {
83 static void writeSelection(NSPasteboard* pasteboard, Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame);
84 static void writeURL(NSPasteboard* pasteboard, NSArray* types, const KURL& url, const String& titleStr, Frame* frame);
85 static void writePlainText(NSPasteboard* pasteboard, const String& text);
88 static Pasteboard* generalPasteboard();
111 Pasteboard();
112 ~Pasteboard();
115 Pasteboard(NSPasteboard *);
  /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/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/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/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/WebCore/platform/android/
TemporaryLinkStubs.cpp 67 #include "Pasteboard.h"
170 Pasteboard* Pasteboard::generalPasteboard()
172 return new Pasteboard();
175 void Pasteboard::writeSelection(Range*, bool, Frame*)
180 void Pasteboard::writePlainText(const String&)
185 void Pasteboard::writeURL(const KURL&, const String&, Frame*)
190 void Pasteboard::clear()
195 bool Pasteboard::canSmartReplace()
201 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame*, PassRefPtr<Range>, bool, bool&
    [all...]

Completed in 61 milliseconds