/external/libvncserver/x11vnc/ |
allowed_input_t.h | 42 int clipboard; member in struct:allowed_input
|
xevents.c | 122 clipboard_atom = XInternAtom(dpy, "CLIPBOARD", False); 124 if (! quiet) rfbLog("could not find atom CLIPBOARD\n"); [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
ClipboardUtils.java | 31 * Copy a text to clipboard.
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
CalculatorText.java | 55 final ClipboardManager clipboard = (ClipboardManager) getContext() 57 if (clipboard.hasPrimaryClip()) { 268 final ClipboardManager clipboard = (ClipboardManager) getContext() local 270 final ClipData primaryClip = clipboard.getPrimaryClip();
|
/cts/hostsidetests/devicepolicy/app/IntentReceiver/src/com/android/cts/intent/receiver/ |
IntentReceiverActivity.java | 68 Log.i(TAG, "Copying \"" + text + "\" to the clipboard"); 70 ClipboardManager clipboard = local 72 clipboard.setPrimaryClip(clip);
|
/development/samples/NotePad/src/com/example/android/notepad/ |
NoteEditor.java | 45 * create a new note from the current contents of the clipboard {@link Intent#ACTION_PASTE}. 216 // For a paste, initializes the data from clipboard. 454 * A helper method that replaces the note's data with the contents of the clipboard. 458 // Gets a handle to the Clipboard Manager 459 ClipboardManager clipboard = (ClipboardManager) local 465 // Gets the clipboard data from the clipboard 466 ClipData clip = clipboard.getPrimaryClip(); 472 // Gets the first item from the clipboard data 483 // The clipboard holds a reference to data with a note MIME type. This copies it [all...] |
NotesList.java | 175 // The paste menu item is enabled if there is data on the clipboard. 176 ClipboardManager clipboard = (ClipboardManager) local 182 // If the clipboard contains an item, enables the Paste option on the menu. 183 if (clipboard.hasPrimaryClip()) { 186 // If the clipboard is empty, disables the menu's Paste option. 401 // Gets a handle to the clipboard service. 402 ClipboardManager clipboard = (ClipboardManager) local 405 // Copies the notes URI to the clipboard. In effect, this copies the note itself 406 clipboard.setPrimaryClip(ClipData.newUri( // new clipboard item holding a UR [all...] |
/external/libvncserver/webclients/novnc/ |
vnc.html | 84 <input type="image" src="images/clipboard.png" 86 title="Clipboard" 119 <!-- Clipboard Panel -->
|
README.md | 24 * Clipboard copy/paste
|
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/ |
CopyPasteTest.java | 74 assertTrue("The clipboard text is " + clipboardText + " but should be <null> or "
|
/sdk/eclipse/ |
dictionary.txt | 47 clipboard
|
/frameworks/base/core/java/android/content/ |
ClipDescription.java | 32 * <p>For more information about using the clipboard framework, read the 33 * <a href="{@docRoot}guide/topics/clipboard/copy-paste.html">Copy and Paste</a>
|
ClipData.java | 41 * Representation of a clipped data on the clipboard. 62 * <p>For more information about using the clipboard framework, read the 63 * <a href="{@docRoot}guide/topics/clipboard/copy-paste.html">Copy and Paste</a> 91 * When retrieving the data from the clipboard, it can do either two things: 92 * if the clipboard contains a URI reference to an existing note, it copies 122 * A common scenario is one where an application places on the clipboard the 176 * stripped when transporting through the clipboard.) [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationViewHeader.java | 213 final ClipboardManager clipboard = (ClipboardManager) local 215 clipboard.setPrimaryClip(ClipData.newPlainText(null, mSubject));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
OldLogCatView.java | 41 import org.eclipse.swt.dnd.Clipboard; 107 private Clipboard mClipboard; 289 mClipboard = new Clipboard(d);
|
/docs/source.android.com/src/devices/tech/debug/ |
dumpsys.jd | 70 clipboard
|
/external/skia/site/dev/contrib/ |
patch.md | 39 it to the clipboard. (In my case, the link is
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiTreeBlock.java | 50 import org.eclipse.swt.dnd.Clipboard; 121 /** Reference to the clipboard for copy-paste */ 122 private Clipboard mClipboard; 176 /** @returns The reference to the clipboard for copy-paste */ 177 Clipboard getClipboard() { 363 // Get a new clipboard reference. It is disposed when the tree is disposed. 364 mClipboard = new Clipboard(tree.getDisplay()); [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetCreator.py | 59 self.clipBoard = None
[all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
EditableDialogCellEditor.java | 394 * current selection to the clipboard. 404 * current selection to the clipboard. 441 * the clipboard contents over the current selection.
|
/cts/tests/tests/preference2/res/values/ |
arrays.xml | 42 <item>No data in clipboard</item>
|
/development/samples/ApiDemos/res/layout/ |
clipboard.xml | 18 Demonstrates clipboard.
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
ClipboardSample.java | 63 setContentView(R.layout.clipboard);
|
/development/samples/NotePad/ |
AndroidManifest.xml | 73 the current contents of the clipboard. -->
|
/external/libvncserver/rfb/ |
rfbclient.h | 444 * Places a string on the server's clipboard. Use this function if you want to 447 * onto the clipboard, you would call this function to synchronize the server's 448 * clipboard with your local clipboard.
|