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

  /external/webkit/Source/WebCore/platform/
Pasteboard.h 84 class Pasteboard {
85 WTF_MAKE_NONCOPYABLE(Pasteboard); WTF_MAKE_FAST_ALLOCATED;
90 static void writeURL(NSPasteboard* pasteboard, NSArray* types, const KURL& url, const String& titleStr, Frame* frame);
91 static void writePlainText(NSPasteboard* pasteboard, const String& text);
93 Pasteboard(NSPasteboard *);
96 static Pasteboard* generalPasteboard();
118 ~Pasteboard();
122 Pasteboard();
  /external/webkit/Source/WebCore/platform/gtk/
PasteboardGtk.cpp 21 #include "Pasteboard.h"
40 Pasteboard* Pasteboard::generalPasteboard()
42 static Pasteboard* pasteboard = new Pasteboard(); local
43 return pasteboard;
46 Pasteboard::Pasteboard()
51 Pasteboard::~Pasteboard(
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
PasteboardHaiku.cpp 29 #include "Pasteboard.h"
47 Pasteboard::Pasteboard()
51 Pasteboard::~Pasteboard()
55 Pasteboard* Pasteboard::generalPasteboard()
57 static Pasteboard pasteboard; local
58 return &pasteboard;
    [all...]
  /external/webkit/Source/WebCore/platform/brew/
PasteboardBrew.cpp 29 #include "Pasteboard.h"
39 Pasteboard* Pasteboard::generalPasteboard()
41 static Pasteboard* pasteboard = new Pasteboard; local
42 return pasteboard;
45 Pasteboard::Pasteboard()
50 void Pasteboard::clear(
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
PasteboardEfl.cpp 24 #include "Pasteboard.h"
38 Pasteboard* Pasteboard::generalPasteboard()
40 static Pasteboard* pasteboard = new Pasteboard(); local
41 return pasteboard;
44 Pasteboard::Pasteboard()
49 void Pasteboard::writePlainText(const String&
    [all...]
  /external/webkit/Source/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/Source/WebCore/platform/chromium/
PasteboardChromium.cpp 32 #include "Pasteboard.h"
56 Pasteboard* Pasteboard::generalPasteboard()
58 static Pasteboard* pasteboard = new Pasteboard; local
59 return pasteboard;
62 Pasteboard::Pasteboard()
67 void Pasteboard::clear(
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
PasteboardQt.cpp 29 #include "Pasteboard.h"
47 Pasteboard::Pasteboard()
52 Pasteboard* Pasteboard::generalPasteboard()
54 static Pasteboard* pasteboard = 0; local
55 if (!pasteboard)
56 pasteboard = new Pasteboard();
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 27 #include "Pasteboard.h"
81 Pasteboard* Pasteboard::generalPasteboard()
83 static Pasteboard* pasteboard = new Pasteboard; local
84 return pasteboard;
87 Pasteboard::Pasteboard()
109 void Pasteboard::clear(
    [all...]
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 29 #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/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 67 #include "Pasteboard.h"
109 Pasteboard* Pasteboard::generalPasteboard()
111 return new Pasteboard();
114 void Pasteboard::writeSelection(Range*, bool, Frame*)
119 void Pasteboard::writePlainText(const String&)
124 void Pasteboard::writeURL(const KURL&, const String&, Frame*)
129 void Pasteboard::clear()
134 bool Pasteboard::canSmartReplace()
140 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame*, PassRefPtr<Range>, bool, bool&
    [all...]

Completed in 232 milliseconds