HomeSort by relevance Sort by last modified time
    Searched full:pasteboard (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTreePasteboard.m 50 // Return a local pasteboard so we don't disturb the real pasteboards when running tests.
58 LocalPasteboard *pasteboard = [localPasteboards objectForKey:name];
59 if (pasteboard)
60 return pasteboard;
61 pasteboard = [[LocalPasteboard alloc] init];
62 [localPasteboards setObject:pasteboard forKey:name];
63 [pasteboard release];
64 return pasteboard;
135 if (newOwner && [newOwner respondsToSelector:@selector(pasteboard:provideDataForType:)])
136 [newOwner pasteboard:self provideDataForType:setType]
    [all...]
DumpRenderTreeDraggingInfo.h 39 - (id)initWithImage:(NSImage *)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source;
  /external/webkit/Source/WebKit/mac/Misc/
WebNSPasteboardExtras.h 51 // of one or more of these drag types on the pasteboard is not a guarantee that
55 // Finds the best URL from the data on the pasteboard, giving priority to http and https URLs
58 // Writes the URL to the pasteboard with the passed types.
64 // Writes a file wrapper to the pasteboard as an RTFD attachment.
65 // NSRTFDPboardType must be declared on the pasteboard before calling this method.
68 // Writes an image, URL and other optional types to the pasteboard.
WebNSViewExtras.h 65 pasteboard:(NSPasteboard *)pasteboard
WebNSViewExtras.m 157 pasteboard:(NSPasteboard *)pasteboard
201 [self dragImage:dragImage at:origin offset:NSZeroSize event:event pasteboard:pasteboard source:source slideBack:YES];
  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac.h 17 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_drag_source.h 21 // contentsView and with the given dropData and pboard). Fill the pasteboard
27 pasteboard:(NSPasteboard*)pboard
bookmark_drag_source.mm 17 pasteboard:(NSPasteboard*)pboard
20 pasteboard:pboard
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.mm 38 #import "Pasteboard.h"
52 return ClipboardMac::create(DragAndDrop, dragData->pasteboard(), policy, frame);
55 ClipboardMac::ClipboardMac(ClipboardType clipboardType, NSPasteboard *pasteboard, ClipboardAccessPolicy policy, Frame *frame)
57 , m_pasteboard(pasteboard)
113 static void addHTMLClipboardTypesForCocoaType(HashSet<String>& resultTypes, NSString *cocoaType, NSPasteboard *pasteboard)
128 NSArray *fileList = [pasteboard propertyListForType:NSFilenamesPboardType];
167 static NSArray *absoluteURLsFromPasteboardFilenames(NSPasteboard* pasteboard, bool onlyFirstURL = false)
169 NSArray *fileList = [pasteboard propertyListForType:NSFilenamesPboardType];
171 // FIXME: Why does this code need to guard against bad values on the pasteboard?
191 static NSArray *absoluteURLsFromPasteboard(NSPasteboard* pasteboard, bool onlyFirstURL = false
    [all...]
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/wx/
ClipboardWx.cpp 33 #include "Pasteboard.h"
57 Pasteboard::generalPasteboard()->clear();
127 Pasteboard::generalPasteboard()->writeURL(url, string, frame);
143 Pasteboard::generalPasteboard()->writePlainText(text);
  /external/webkit/Source/WebKit/mac/WebView/
WebArchive.h 36 @abstract The pasteboard type constant used when adding or accessing a WebArchive on the pasteboard.
44 This class can be used for saving standalone web pages, representing portions of a web page on the pasteboard, or any other
92 @discussion The data returned by this method can be used to save a web archive to a file or to place a web archive on the pasteboard
WebEditingDelegatePrivate.h 35 - (void)webView:(WebView *)webView didWriteSelectionToPasteboard:(NSPasteboard *)pasteboard;
36 - (void)webView:(WebView *)webView didSetSelectionTypesForPasteboard:(NSPasteboard *)pasteboard;
WebView.h 155 @abstract Returns a URL from a pasteboard
156 @param pasteboard The pasteboard with a URL
157 @result A URL if the pasteboard has one. Nil if it does not.
158 @discussion This method differs than NSURL's URLFromPasteboard method in that it tries multiple pasteboard types
159 including NSURLPboardType to find a URL on the pasteboard.
161 + (NSURL *)URLFromPasteboard:(NSPasteboard *)pasteboard;
165 @abstract Returns a URL title from a pasteboard
166 @param pasteboard The pasteboard with a URL titl
    [all...]
WebHTMLView.mm 358 #define WebSmartPastePboardType @"NeXT smart paste pasteboard type"
384 - (DOMDocumentFragment *)_documentFragmentFromPasteboard:(NSPasteboard *)pasteboard inContext:(DOMRange *)context allowPlainText:(BOOL)allowPlainText;
385 - (NSString *)_plainTextFromPasteboard:(NSPasteboard *)pasteboard;
386 - (void)_pasteWithPasteboard:(NSPasteboard *)pasteboard allowPlainText:(BOOL)allowPlainText;
387 - (void)_pasteAsPlainTextWithPasteboard:(NSPasteboard *)pasteboard;
397 - (void)_writeSelectionWithPasteboardTypes:(NSArray *)types toPasteboard:(NSPasteboard *)pasteboard cachedAttributedString:(NSAttributedString *)attributedString;
763 - (DOMDocumentFragment *)_documentFragmentFromPasteboard:(NSPasteboard *)pasteboard
767 NSArray *types = [pasteboard types];
771 (fragment = [self _documentFragmentFromPasteboard:pasteboard
778 (fragment = [self _documentFragmentFromPasteboard:pasteboard
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebView.idl 194 @abstract Returns a URL from a pasteboard
195 @param pasteboard The pasteboard with a URL
196 @result A URL if the pasteboard has one. Nil if it does not.
197 @discussion This method differs than NSURL's URLFromPasteboard method in that it tries multiple pasteboard types
198 including NSURLPboardType to find a URL on the pasteboard.
199 + (NSURL *)URLFromPasteboard:(NSPasteboard *)pasteboard;
201 HRESULT URLFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* url);
205 @abstract Returns a URL title from a pasteboard
206 @param pasteboard The pasteboard with a URL titl
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_contents_drag_source.mm 44 pasteboard:(NSPasteboard*)pboard
93 pasteboard:pasteboard_
115 // Make sure the pasteboard owner isn't us.
web_drop_target.h 62 // the pasteboard, |NO| otherwise. If |convertFilenames| is |YES|, the function
69 // given pasteboard.
  /external/webkit/Source/WebCore/platform/chromium/
ReadableDataObject.cpp 35 #include "Pasteboard.h"
80 Pasteboard::generalPasteboard()->isSelectionMode() ?
86 Pasteboard::generalPasteboard()->isSelectionMode() ?
ChromiumDataObjectLegacy.cpp 35 #include "Pasteboard.h"
104 // This is currently broken for pasteboard events, and always has been.
132 Pasteboard::generalPasteboard()->isSelectionMode() ?
156 Pasteboard::generalPasteboard()->isSelectionMode() ?
  /external/chromium/chrome/browser/ui/cocoa/
find_pasteboard_unittest.mm 13 // A subclass of FindPasteboard that doesn't write to the real find pasteboard.
24 // These are for checking that pasteboard content is copied to/from the
  /external/webkit/Source/WebCore/dom/
FragmentScriptingPermission.h 32 // generating DocumentFragments for paste in platform/*/Pasteboard.*.
  /external/webkit/Source/WebCore/inspector/
InjectedScriptHost.cpp 48 #include "Pasteboard.h"
135 Pasteboard::generalPasteboard()->writePlainText(text);
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultEditingDelegate.m 105 - (void)webView:(WebView *)webView didWriteSelectionToPasteboard:(NSPasteboard *)pasteboard
109 - (void)webView:(WebView *)webView didSetSelectionTypesForPasteboard:(NSPasteboard *)pasteboard
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_editor.h 18 // pasteboard).

Completed in 694 milliseconds

12 3 4 5 6 7