Searched refs:generalPasteboard (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DFrameworkUtilities.py8 pboard = NSPasteboard.generalPasteboard()
36 pboard = NSPasteboard.generalPasteboard()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DFrameworkUtilities.py8 pboard = NSPasteboard.generalPasteboard()
36 pboard = NSPasteboard.generalPasteboard()
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXClipboard.c53 pasteboard:[NSPasteboard generalPasteboard]
62 if (clipboardOwner && [[NSPasteboard generalPasteboard] changeCount] !=
124 NSPasteboard *pb = [NSPasteboard generalPasteboard];
171 NSPasteboard *pb = [NSPasteboard generalPasteboard];
228 NSPasteboard *pb = [NSPasteboard generalPasteboard];
306 changeCount = [[NSPasteboard generalPasteboard] changeCount];
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-AddressBook/Examples/Plugins/Python Address Label/
H A Dplugin.py37 pboard = NSPasteboard.generalPasteboard()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-AddressBook/Examples/Plugins/Python Address Label/
H A Dplugin.py37 pboard = NSPasteboard.generalPasteboard()
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInjectedScriptHost.cpp123 Pasteboard::generalPasteboard()->writePlainText(text, Pasteboard::CannotSmartReplace);
H A DInspectorFrontendHost.cpp227 Pasteboard::generalPasteboard()->writePlainText(text, Pasteboard::CannotSmartReplace);
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DPasteboardEfl.cpp32 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard
/macosx-10.9.5/vim-53/src/
H A Dos_macosx.m57 NSPasteboard *pb = [NSPasteboard generalPasteboard];
180 NSPasteboard *pb = [NSPasteboard generalPasteboard];
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DEditorClientQt.cpp207 bool oldSelectionMode = Pasteboard::generalPasteboard()->isSelectionMode();
208 Pasteboard::generalPasteboard()->setSelectionMode(true);
209 Pasteboard::generalPasteboard()->writeSelection(frame->selection()->toNormalizedRange().get(), frame->editor().canSmartCopyOrDelete(), frame);
210 Pasteboard::generalPasteboard()->setSelectionMode(oldSelectionMode);
H A DQWebPageAdapter.cpp1029 bool oldSelectionMode = Pasteboard::generalPasteboard()->isSelectionMode();
1030 Pasteboard::generalPasteboard()->setSelectionMode(true);
1032 Pasteboard::generalPasteboard()->setSelectionMode(oldSelectionMode);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/TypingTutor/
H A DBigLetterView.rb202 pb = NSPasteboard.generalPasteboard
209 pb = NSPasteboard.generalPasteboard
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DPasteboardBlackBerry.cpp33 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard
/macosx-10.9.5/WebCore-7537.78.1/platform/ios/
H A DClipboardIOS.mm263 Pasteboard::generalPasteboard()->writeSelection(range, frame->editor().smartInsertDeleteEnabled() && frame->selection()->granularity() == WordGranularity, frame);
268 Pasteboard::generalPasteboard()->writePlainText(text, m_frame);
H A DPasteboardIOS.mm103 Pasteboard* Pasteboard::generalPasteboard()
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp210 bool oldSelectionMode = Pasteboard::generalPasteboard()->isSelectionMode();
211 Pasteboard::generalPasteboard()->setSelectionMode(true);
212 Pasteboard::generalPasteboard()->writeSelection(frame->selection()->toNormalizedRange().get(), frame->editor().canSmartCopyOrDelete(), frame);
213 Pasteboard::generalPasteboard()->setSelectionMode(oldSelectionMode);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DPasteboard.h116 static Pasteboard* generalPasteboard();
/macosx-10.9.5/WebCore-7537.78.1/platform/wince/
H A DPasteboardWinCE.cpp80 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DPasteboardGtk.cpp95 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DPasteboardQt.cpp108 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditor.cpp422 pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
717 Pasteboard* pasteboard = Pasteboard::generalPasteboard();
1056 Pasteboard::generalPasteboard()->writePlainText(selectedTextForClipboard(),
1059 Pasteboard::generalPasteboard()->writeSelection(selection.get(), canSmartCopyOrDelete(), m_frame, IncludeImageAltTextForClipboard);
1076 Pasteboard::generalPasteboard()->writePlainText(selectedTextForClipboard(),
1081 Pasteboard::generalPasteboard()->writeImage(imageElement, document->url(), document->title());
1083 Pasteboard::generalPasteboard()->writeSelection(selectedRange().get(), canSmartCopyOrDelete(), m_frame, IncludeImageAltTextForClipboard);
1100 pasteWithPasteboard(Pasteboard::generalPasteboard(), true);
1102 pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
1112 pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
[all...]
H A DEditorCommand.cpp928 bool oldSelectionMode = Pasteboard::generalPasteboard()->isSelectionMode();
929 Pasteboard::generalPasteboard()->setSelectionMode(true);
931 Pasteboard::generalPasteboard()->setSelectionMode(oldSelectionMode);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/PassengerPane/test/
H A Dpref_pane_passenger_test.rb540 pboard = OSX::NSPasteboard.generalPasteboard
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebEditorClient.mm323 [[m_webView _editingDelegateForwarder] webView:m_webView didWriteSelectionToPasteboard:[NSPasteboard generalPasteboard]];
338 [[m_webView _editingDelegateForwarder] webView:m_webView didSetSelectionTypesForPasteboard:[NSPasteboard generalPasteboard]];
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DPasteboardWin.cpp93 Pasteboard* Pasteboard::generalPasteboard() function in class:WebCore::Pasteboard

Completed in 310 milliseconds

12