HomeSort by relevance Sort by last modified time
    Searched full:nspasteboard (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 35 @class NSPasteboard;
38 class NSPasteboard;
49 static PassRefPtr<ClipboardMac> create(ClipboardType clipboardType, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame* frame)
80 NSPasteboard *pasteboard() { return m_pasteboard.get(); }
83 ClipboardMac(ClipboardType, NSPasteboard *, ClipboardAccessPolicy, Frame*);
87 RetainPtr<NSPasteboard> m_pasteboard;
PasteboardHelper.h 50 virtual String urlFromPasteboard(NSPasteboard*, String* title) const = 0;
51 virtual String plainTextFromPasteboard(NSPasteboard*) const = 0;
52 virtual DOMDocumentFragment* fragmentFromPasteboard(NSPasteboard*) const = 0;
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.mm 81 bool ReadBookmarkDictionaryListPboardType(NSPasteboard* pb,
90 bool ReadWebURLsWithTitlesPboardType(NSPasteboard* pb,
121 bool ReadNSURLPboardType(NSPasteboard* pb,
176 void WriteBookmarkDictionaryListPboardType(NSPasteboard* pb,
198 void WriteSimplifiedBookmarkTypes(NSPasteboard* pb,
225 NSPasteboard* pb,
246 NSPasteboard* pb,
256 bool ClipboardContainsBookmarksPrivate(NSPasteboard* pb) {
271 NSPasteboard* pb = [NSPasteboard generalPasteboard]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
find_pasteboard.mm 44 - (NSPasteboard*)findPboard {
45 return [NSPasteboard pasteboardWithName:NSFindPboard];
49 NSPasteboard* findPboard = [self findPboard];
68 NSPasteboard* findPboard = [self findPboard];
find_pasteboard_unittest.mm 18 NSPasteboard* pboard_;
20 - (NSPasteboard*)findPboard;
34 pboard_ = [NSPasteboard pasteboardWithUniqueName];
44 - (NSPasteboard*)findPboard {
url_drop_target.mm 8 #import "third_party/mozilla/NSPasteboard+Utils.h"
64 NSPasteboard* pboard = [sender draggingPasteboard];
95 NSPasteboard* pboard = [sender draggingPasteboard];
find_pasteboard.h 23 // [NSPasteboard pasteboardWithName:NSFindPboard] directly.
50 - (NSPasteboard*)findPboard;
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_drop_target_unittest.mm 13 #import "third_party/mozilla/NSPasteboard+Utils.h"
24 void PutURLOnPasteboard(NSString* urlString, NSPasteboard* pboard) {
33 NSPasteboard* pboard) {
73 NSPasteboard* pboard = nil;
80 pboard = [NSPasteboard pasteboardWithUniqueName];
91 pboard = [NSPasteboard pasteboardWithUniqueName];
104 pboard = [NSPasteboard pasteboardWithUniqueName];
117 pboard = [NSPasteboard pasteboardWithUniqueName];
129 pboard = [NSPasteboard pasteboardWithUniqueName];
150 NSPasteboard* pboard = [NSPasteboard pasteboardWithUniqueName]
    [all...]
web_drag_source.h 32 scoped_nsobject<NSPasteboard> pasteboard_;
51 pasteboard:(NSPasteboard*)pboard
59 - (void)lazyWriteToPasteboard:(NSPasteboard*)pboard
web_contents_drag_source.h 25 scoped_nsobject<NSPasteboard> pasteboard_;
35 pasteboard:(NSPasteboard*)pboard
  /external/webkit/Source/WebCore/platform/
Pasteboard.h 48 @class NSPasteboard;
52 class NSPasteboard;
89 static void writeSelection(NSPasteboard*, NSArray* pasteboardTypes, Range* selectedRange, bool canSmartCopyOrDelete, Frame*);
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 *);
125 RetainPtr<NSPasteboard> m_pasteboard;
DragData.h 43 @class NSPasteboard;
46 class NSPasteboard;
123 NSPasteboard *pasteboard() { return m_pasteboard.get(); }
132 RetainPtr<NSPasteboard> m_pasteboard;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_folder_target.h 35 toPasteboard:(NSPasteboard*)pboard;
40 - (void)fillPasteboard:(NSPasteboard*)pboard
45 // The (internal) |NSPasteboard| type string for bookmark button drags, used for
  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac_unittest.mm 21 pasteboard_ = [NSPasteboard pasteboardWithUniqueName];
28 NSPasteboard* const pasteboard() { return pasteboard_; }
31 NSPasteboard* pasteboard_;
download_util_mac.h 17 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path);
download_util_mac.mm 18 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path) {
43 NSPasteboard* pasteboard = [NSPasteboard pasteboardWithName:NSDragPboard];
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTreeDraggingInfo.h 35 NSPasteboard *draggingPasteboard;
39 - (id)initWithImage:(NSImage *)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source;
46 - (NSPasteboard *)draggingPasteboard;
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
location_icon_decoration.mm 13 #import "third_party/mozilla/NSPasteboard+Utils.h"
41 NSPasteboard* LocationIconDecoration::GetDragPasteboard() {
48 NSPasteboard* pboard = [NSPasteboard pasteboardWithName:NSDragPboard];
location_bar_decoration.mm 49 NSPasteboard* LocationBarDecoration::GetDragPasteboard() {
location_icon_decoration.h 25 virtual NSPasteboard* GetDragPasteboard();
  /external/webkit/Source/WebCore/page/
DragClient.h 39 @class NSPasteboard;
44 class NSPasteboard;
69 //web archives and NSPasteboard extras
71 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, Frame*) {};
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu_mac.mm 91 NSPasteboard* pboard = [NSPasteboard pasteboardWithUniqueName];
93 // See the documentation on [NSPasteboard declareTypes].
  /external/webkit/Source/WebKit/mac/History/
WebURLsWithTitles.h 33 // Convenience class for getting URLs and associated titles on and off an NSPasteboard
43 + (void)writeURLs:(NSArray *)URLs andTitles:(NSArray *)titles toPasteboard:(NSPasteboard *)pasteboard;
48 + (NSArray *)URLsFromPasteboard:(NSPasteboard *)pasteboard;
53 + (NSArray *)titlesFromPasteboard:(NSPasteboard *)pasteboard;
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegatePrivate.h 35 - (void)webView:(WebView *)webView didWriteSelectionToPasteboard:(NSPasteboard *)pasteboard;
36 - (void)webView:(WebView *)webView didSetSelectionTypesForPasteboard:(NSPasteboard *)pasteboard;
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 46 return ClipboardMac::create(Clipboard::CopyAndPaste, [NSPasteboard generalPasteboard], policy, frame);
69 m_frame->editor()->client()->setInsertionPasteboard([NSPasteboard generalPasteboard]);
206 NSPasteboard *findPasteboard = [NSPasteboard pasteboardWithName:NSFindPboard];
216 Pasteboard::writeSelection([NSPasteboard pasteboardWithName:pasteboardName], types.get(), selectedRange().get(), true, m_frame);
221 Pasteboard pasteboard([NSPasteboard pasteboardWithName:pasteboardName]);

Completed in 2550 milliseconds

1 2 3 4 5