Searched refs:m_pasteboard (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/mac/ |
D | DragDataMac.mm | 47 , m_pasteboard([m_platformDragData draggingPasteboard]) 58 , m_pasteboard([NSPasteboard pasteboardWithName:dragStorageName]) 66 return [[m_pasteboard.get() types] containsObject:WebSmartPastePboardType]; 71 return [[m_pasteboard.get() types] containsObject:NSColorPboardType]; 76 return [[m_pasteboard.get() types] containsObject:NSFilenamesPboardType]; 81 NSArray *filenames = [m_pasteboard.get() propertyListForType:NSFilenamesPboardType]; 90 NSArray *types = [m_pasteboard.get() types]; 96 || [NSURL URLFromPasteboard:m_pasteboard.get()]; 101 Pasteboard pasteboard(m_pasteboard.get()); 107 NSColor *color = [NSColor colorFromPasteboard:m_pasteboard.get()]; [all …]
|
D | PasteboardMac.mm | 122 : m_pasteboard(pboard) 128 [m_pasteboard.get() declareTypes:[NSArray array] owner:nil]; 229 Pasteboard::writeSelection(m_pasteboard.get(), 0, selectedRange, canSmartCopyOrDelete, frame); 238 NSPasteboard *pasteboard = m_pasteboard.get(); 283 Pasteboard::writeURL(m_pasteboard.get(), nil, url, titleStr, frame); 307 [m_pasteboard.get() setData:RTFDData forType:NSRTFDPboardType]; 325 [m_pasteboard.get() declareTypes:types owner:nil]; 326 writeURL(m_pasteboard.get(), types, cocoaURL, nsStringNilIfEmpty(title), frame); 331 [m_pasteboard.get() setData:[image->getNSImage() TIFFRepresentation] forType:NSTIFFPboardType]; 341 return [[m_pasteboard.get() types] containsObject:WebSmartPastePboardType]; [all …]
|
D | ClipboardMac.mm | 57 , m_pasteboard(pasteboard) 60 m_changeCount = [m_pasteboard.get() changeCount]; 69 return m_pasteboard && [m_pasteboard.get() types] && [[m_pasteboard.get() types] count] > 0; 154 [m_pasteboard.get() setString:@"" forType:cocoaType.get()]; 164 [m_pasteboard.get() declareTypes:[NSArray array] owner:nil]; 226 NSArray *absoluteURLs = absoluteURLsFromPasteboard(m_pasteboard.get(), onlyFirstURL); 229 …cocoaValue = [[m_pasteboard.get() stringForType:cocoaType.get()] precomposedStringWithCanonicalMap… 231 cocoaValue = [m_pasteboard.get() stringForType:cocoaType.get()]; 235 if (cocoaValue && m_changeCount == [m_pasteboard.get() changeCount]) { 253 [m_pasteboard.get() addTypes:[NSArray arrayWithObject:NSURLPboardType] owner:nil]; [all …]
|
D | ClipboardMac.h | 80 NSPasteboard *pasteboard() { return m_pasteboard.get(); } in pasteboard() 87 RetainPtr<NSPasteboard> m_pasteboard; variable
|
/external/webkit/Source/WebCore/platform/ |
D | DragData.h | 123 NSPasteboard *pasteboard() { return m_pasteboard.get(); } in pasteboard() 132 RetainPtr<NSPasteboard> m_pasteboard; variable
|
D | Pasteboard.h | 125 RetainPtr<NSPasteboard> m_pasteboard; variable
|
/external/webkit/Source/WebCore/ |
D | ChangeLog | 28369 process. Therefore we should use m_pasteboard instead. 28378 (WebCore::DragData::asColor): Replaced references to m_platformData with m_pasteboard.
|
D | ChangeLog-2007-10-14 | 44302 Also made the Pasteboard::m_pasteboard a RetainPtr although it
|