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

  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 49 static PassRefPtr<ClipboardMac> create(ClipboardType clipboardType, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame* frame)
51 return adoptRef(new ClipboardMac(clipboardType, pasteboard, policy, frame));
80 NSPasteboard *pasteboard() { return m_pasteboard.get(); } function in class:WebCore::ClipboardMac
  /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/
DragData.h 123 NSPasteboard *pasteboard() { return m_pasteboard.get(); } function in class:WebCore::DragData
  /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/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/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/WebKit/chromium/src/
WebViewImpl.cpp 79 #include "Pasteboard.h"
552 Pasteboard* pasteboard = Pasteboard::generalPasteboard(); local
553 bool oldSelectionMode = pasteboard->isSelectionMode();
554 pasteboard->setSelectionMode(true);
556 pasteboard->setSelectionMode(oldSelectionMode);
    [all...]

Completed in 326 milliseconds