Pasteboard         45 Source/core/clipboard/DataObject.cpp     blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer();
Pasteboard        150 Source/core/clipboard/DataObjectItem.cpp     blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer();
Pasteboard         48 Source/core/clipboard/Pasteboard.cpp Pasteboard* Pasteboard::generalPasteboard()
Pasteboard         50 Source/core/clipboard/Pasteboard.cpp     static Pasteboard* pasteboard = new Pasteboard;
Pasteboard         54 Source/core/clipboard/Pasteboard.cpp Pasteboard::Pasteboard()
Pasteboard         59 Source/core/clipboard/Pasteboard.cpp bool Pasteboard::isSelectionMode() const
Pasteboard         64 Source/core/clipboard/Pasteboard.cpp void Pasteboard::setSelectionMode(bool selectionMode)
Pasteboard         69 Source/core/clipboard/Pasteboard.cpp void Pasteboard::writePlainText(const String& text, SmartReplaceOption)
Pasteboard         81 Source/core/clipboard/Pasteboard.cpp void Pasteboard::writeImage(Image* image, const KURL& url, const String& title)
Pasteboard         93 Source/core/clipboard/Pasteboard.cpp void Pasteboard::writeDataObject(PassRefPtrWillBeRawPtr<DataObject> dataObject)
Pasteboard         98 Source/core/clipboard/Pasteboard.cpp bool Pasteboard::canSmartReplace()
Pasteboard        103 Source/core/clipboard/Pasteboard.cpp bool Pasteboard::isHTMLAvailable()
Pasteboard        108 Source/core/clipboard/Pasteboard.cpp String Pasteboard::plainText()
Pasteboard        113 Source/core/clipboard/Pasteboard.cpp String Pasteboard::readHTML(KURL& url, unsigned& fragmentStart, unsigned& fragmentEnd)
Pasteboard        128 Source/core/clipboard/Pasteboard.cpp void Pasteboard::writeHTML(const String& markup, const KURL& documentURL, const String& plainText, bool canSmartCopyOrDelete)
Pasteboard         42 Source/core/clipboard/Pasteboard.h class Pasteboard {
Pasteboard         43 Source/core/clipboard/Pasteboard.h     WTF_MAKE_NONCOPYABLE(Pasteboard); WTF_MAKE_FAST_ALLOCATED;
Pasteboard         50 Source/core/clipboard/Pasteboard.h     static Pasteboard* generalPasteboard();
Pasteboard         73 Source/core/clipboard/Pasteboard.h     Pasteboard();
Pasteboard        382 Source/core/editing/Editor.cpp void Editor::pasteAsPlainTextWithPasteboard(Pasteboard* pasteboard)
Pasteboard        388 Source/core/editing/Editor.cpp void Editor::pasteWithPasteboard(Pasteboard* pasteboard)
Pasteboard        417 Source/core/editing/Editor.cpp void Editor::writeSelectionToPasteboard(Pasteboard* pasteboard, Range* selectedRange, const String& plainText)
Pasteboard        424 Source/core/editing/Editor.cpp static void writeImageNodeToPasteboard(Pasteboard* pasteboard, Node* node, const String& title)
Pasteboard        472 Source/core/editing/Editor.cpp         Pasteboard::generalPasteboard()->writeDataObject(dataObject.release());
Pasteboard        481 Source/core/editing/Editor.cpp bool Editor::canSmartReplaceWithPasteboard(Pasteboard* pasteboard)
Pasteboard        857 Source/core/editing/Editor.cpp             Pasteboard::generalPasteboard()->writePlainText(plainText,
Pasteboard        858 Source/core/editing/Editor.cpp                 canSmartCopyOrDelete() ? Pasteboard::CanSmartReplace : Pasteboard::CannotSmartReplace);
Pasteboard        860 Source/core/editing/Editor.cpp             writeSelectionToPasteboard(Pasteboard::generalPasteboard(), selection.get(), plainText);
Pasteboard        873 Source/core/editing/Editor.cpp         Pasteboard::generalPasteboard()->writePlainText(m_frame.selectedTextForClipboard(),
Pasteboard        874 Source/core/editing/Editor.cpp             canSmartCopyOrDelete() ? Pasteboard::CanSmartReplace : Pasteboard::CannotSmartReplace);
Pasteboard        878 Source/core/editing/Editor.cpp             writeImageNodeToPasteboard(Pasteboard::generalPasteboard(), imageElement, document->title());
Pasteboard        880 Source/core/editing/Editor.cpp             writeSelectionToPasteboard(Pasteboard::generalPasteboard(), selectedRange().get(), m_frame.selectedTextForClipboard());
Pasteboard        895 Source/core/editing/Editor.cpp         pasteWithPasteboard(Pasteboard::generalPasteboard());
Pasteboard        897 Source/core/editing/Editor.cpp         pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
Pasteboard        907 Source/core/editing/Editor.cpp     pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
Pasteboard        924 Source/core/editing/Editor.cpp     writeImageNodeToPasteboard(Pasteboard::generalPasteboard(), result.innerNonSharedNode(), result.altDisplayString());
Pasteboard         54 Source/core/editing/Editor.h class Pasteboard;
Pasteboard        257 Source/core/editing/Editor.h     bool canSmartReplaceWithPasteboard(Pasteboard*);
Pasteboard        258 Source/core/editing/Editor.h     void pasteAsPlainTextWithPasteboard(Pasteboard*);
Pasteboard        259 Source/core/editing/Editor.h     void pasteWithPasteboard(Pasteboard*);
Pasteboard        260 Source/core/editing/Editor.h     void writeSelectionToPasteboard(Pasteboard*, Range*, const String& plainText);
Pasteboard        943 Source/core/editing/EditorCommand.cpp     bool oldSelectionMode = Pasteboard::generalPasteboard()->isSelectionMode();
Pasteboard        944 Source/core/editing/EditorCommand.cpp     Pasteboard::generalPasteboard()->setSelectionMode(true);
Pasteboard        946 Source/core/editing/EditorCommand.cpp     Pasteboard::generalPasteboard()->setSelectionMode(oldSelectionMode);
Pasteboard        160 Source/core/inspector/InspectorFrontendHost.cpp     Pasteboard::generalPasteboard()->writePlainText(text, Pasteboard::CannotSmartReplace);