OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:clipboard
(Results
1 - 12
of
12
) sorted by null
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py
16
"""copy: (NOT AVAILABLE YET) Copy the selected items to the
clipboard
(the Finder must be the front application)
70
"""
clipboard
- (NOT AVAILABLE YET) the Finder\xd5s
clipboard
window """
73
clipboard
= _Prop_clipboard()
variable
150
'
clipboard
' : _Prop_clipboard,
/cts/hostsidetests/devicepolicy/app/IntentReceiver/src/com/android/cts/intent/receiver/
IntentReceiverActivity.java
85
Log.i(TAG, "Copying \"" + text + "\" to the
clipboard
");
87
ClipboardManager
clipboard
=
local
89
clipboard
.setPrimaryClip(clip);
/development/samples/NotePad/src/com/example/android/notepad/
NotesList.java
166
// The paste menu item is enabled if there is data on the
clipboard
.
167
ClipboardManager
clipboard
= (ClipboardManager)
local
173
// If the
clipboard
contains an item, enables the Paste option on the menu.
174
if (
clipboard
.hasPrimaryClip()) {
177
// If the
clipboard
is empty, disables the menu's Paste option.
392
// Gets a handle to the
clipboard
service.
393
ClipboardManager
clipboard
= (ClipboardManager)
local
396
// Copies the notes URI to the
clipboard
. In effect, this copies the note itself
397
clipboard
.setPrimaryClip(ClipData.newUri( // new
clipboard
item holding a UR
[
all
...]
NoteEditor.java
49
* create a new note from the current contents of the
clipboard
{@link Intent#ACTION_PASTE}.
210
// For a paste, initializes the data from
clipboard
.
394
* A helper method that replaces the note's data with the contents of the
clipboard
.
398
// Gets a handle to the
Clipboard
Manager
399
ClipboardManager
clipboard
= (ClipboardManager)
local
405
// Gets the
clipboard
data from the
clipboard
406
ClipData clip =
clipboard
.getPrimaryClip();
412
// Gets the first item from the
clipboard
data
423
// The
clipboard
holds a reference to data with a note MIME type. This copies it
[
all
...]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
LogcatViewer.java
143
ClipboardManager
clipboard
= (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
local
144
clipboard
.setText(getAsString());
145
Toast.makeText(this, "Copied to
clipboard
", Toast.LENGTH_SHORT).show();
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalKeyListener.java
73
private ClipboardManager
clipboard
= null;
field in class:TerminalKeyListener
360
if (
clipboard
!= null) {
361
// copy selected area to
clipboard
364
clipboard
.setText(copiedText);
490
public void setClipboardManager(ClipboardManager
clipboard
) {
491
this.
clipboard
=
clipboard
;
TerminalBridge.java
103
private ClipboardManager
clipboard
;
field in class:TerminalBridge
318
* Inject a specific string into this terminal. Used for post-login strings and pasting
clipboard
.
468
clipboard
= (ClipboardManager) parent.getContext().getSystemService(Context.CLIPBOARD_SERVICE);
469
keyListener.setClipboardManager(
clipboard
);
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py
486
"""
clipboard
- the contents of the
clipboard
for this application """
489
clipboard
= _Prop_clipboard()
variable
596
'
clipboard
' : _Prop_clipboard,
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
ConsoleActivity.java
105
protected ClipboardManager
clipboard
;
field in class:ConsoleActivity
261
clipboard
= (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
494
// copy selected area to
clipboard
497
clipboard
.setText(copiedText);
698
if (
clipboard
.hasText() && sessionOpen) {
722
// pull string from
clipboard
and generate all events to force down
723
String clip =
clipboard
.getText().toString();
[
all
...]
/external/jline/src/src/main/java/jline/
ConsoleReader.java
796
* Paste the contents of the
clipboard
into the console buffer
798
* @return true if
clipboard
contents pasted
801
Clipboard
clipboard
;
local
803
clipboard
= Toolkit.getDefaultToolkit().getSystemClipboard();
808
if (
clipboard
== null) {
812
Transferable transferable =
clipboard
.getContents(null);
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
AndroidFacade.java
133
Object
clipboard
= null;
local
136
clipboard
= mService.getSystemService(Context.CLIPBOARD_SERVICE);
138
Looper.prepare(); //
Clipboard
manager won't work without this on higher SDK levels...
139
clipboard
= mService.getSystemService(Context.CLIPBOARD_SERVICE);
141
mClipboard = (ClipboardManager)
clipboard
;
143
Log.w("
Clipboard
managed not accessible.");
483
@Rpc(description = "Put a text string in the
clipboard
.")
608
@Rpc(description = "Read all text strings copied by setTextClip from the
clipboard
.")
[
all
...]
/external/jline/
jline-1.0.jar
Completed in 2518 milliseconds