HomeSort by relevance Sort by last modified time
    Searched defs:Clipboard (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/remoting/host/
clipboard.h 19 // All Clipboard methods should be run on the UI thread, so that the Clipboard
21 class Clipboard {
23 virtual ~Clipboard() {}
25 // Initialises any objects needed to read from or write to the clipboard.
31 // Writes an item to the clipboard. It must be called after Start().
34 static scoped_ptr<Clipboard> Create();
  /external/chromium_org/remoting/webapp/
clipboard.js 7 * A class for moving clipboard items between the plugin and the OS.
18 remoting.Clipboard = function() {
25 remoting.Clipboard.prototype.ItemTypes = {
34 remoting.Clipboard.prototype.previousContent = "";
40 remoting.Clipboard.prototype.itemFromHostTextPending = false;
46 remoting.Clipboard.prototype.blockOneClipboardSend_ = false;
53 remoting.Clipboard.prototype.startSession = function() {
59 // Do a paste operation, but make sure the resulting clipboard data isn't sent
61 // clipboard before the session began. The user may not have intended such
68 * Accepts a clipboard from the OS, and sends any changed clipboard items t
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_clipboard.h 20 class Clipboard {
30 // Returns true if the given format is available from the given clipboard.
36 // data read from the given clipboard in the given format.
43 // the clipboard. Otherwise nothing will be written.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Clipboard.h 47 class Clipboard : public RefCounted<Clipboard>, public ScriptWrappable {
49 // Whether this clipboard is serving a drag-drop or copy-paste request.
55 static PassRefPtr<Clipboard> create(ClipboardAccessPolicy, DragData*, Frame*);
57 virtual ~Clipboard() { }
113 Clipboard(ClipboardAccessPolicy, ClipboardType);
Clipboard.cpp 27 #include "core/dom/Clipboard.h"
34 Clipboard::Clipboard(ClipboardAccessPolicy policy, ClipboardType clipboardType)
45 void Clipboard::setAccessPolicy(ClipboardAccessPolicy policy)
52 bool Clipboard::canReadTypes() const
57 bool Clipboard::canReadData() const
62 bool Clipboard::canWriteData() const
67 bool Clipboard::canSetDragImage() const
121 DragOperation Clipboard::sourceOperation() const
128 DragOperation Clipboard::destinationOperation() cons
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
Clipboard.java 18 * clipboard.
21 public class Clipboard {
22 // Necessary for coercing clipboard contents to text if they require
23 // access to network resources, etceteras (e.g., URI in clipboard)
31 * @param context for accessing the clipboard
33 private Clipboard(final Context context) {
40 * Returns a new Clipboard object bound to the specified context.
42 * @param context for accessing the clipboard
46 private static Clipboard create(final Context context) {
47 return new Clipboard(context)
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_android.cc 5 #include "ui/base/clipboard/clipboard.h"
14 #include "ui/base/clipboard/clipboard_android_initialization.h"
18 // HTML+text now that Android's clipboard system supports them, then nuke the
22 // The Android clipboard system used to only support text format. So we used the
25 // variable protected by a lock. So the (non-text) clipboard will only work
105 // Android's API for storing HTML content on the clipboard requires a plain-
107 // stable order for setting clipboard data, ensuring that plain-text data
108 // is available first. Do not write to the clipboard when only HTML data is
131 // in the Android clipboard, clear the map and insert the Android text into it
    [all...]
clipboard_gtk.cc 5 #include "ui/base/clipboard/clipboard.h"
21 #include "ui/base/clipboard/custom_data_helper.h"
66 clipboard_atom_ = XInternAtom(GetXDisplay(), "CLIPBOARD", false);
74 // primary and the clipboard buffers. Register anyway just to be safe.
126 // GTK will call this when an application wants data we copied to the clipboard.
127 void GetData(GtkClipboard* clipboard,
131 Clipboard::TargetMap* data_map =
132 reinterpret_cast<Clipboard::TargetMap*>(user_data);
136 Clipboard::TargetMap::iterator iter = data_map->find(target_string)
253 GtkClipboard *clipboard = LookupBackingClipboard(buffer); local
359 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
410 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
436 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
453 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
471 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
497 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
559 GtkClipboard* clipboard = LookupBackingClipboard(buffer); local
    [all...]
clipboard_win.cc 8 #include "ui/base/clipboard/clipboard.h"
29 #include "ui/base/clipboard/clipboard_util_win.h"
30 #include "ui/base/clipboard/custom_data_helper.h"
38 // A scoper to manage acquiring and automatically releasing the clipboard.
56 // Attempt to open the clipboard, which will acquire the Windows clipboard
61 // rdpclip.exe process likes to read what we've written to the clipboard and
62 // send it to the RDP client. If we open and close the clipboard in quick
67 // normal situations, the user is initiating clipboard operations and ther
217 ScopedClipboard clipboard; local
387 ScopedClipboard clipboard; local
414 ScopedClipboard clipboard; local
436 ScopedClipboard clipboard; local
459 ScopedClipboard clipboard; local
485 ScopedClipboard clipboard; local
531 ScopedClipboard clipboard; local
623 ScopedClipboard clipboard; local
643 ScopedClipboard clipboard; local
    [all...]
clipboard.h 66 class UI_EXPORT Clipboard : NON_EXPORTED_BASE(public base::ThreadChecker) {
76 // Platform neutral holder for native data representation of a clipboard type.
101 friend class Clipboard;
105 // Platform-specific glue used internally by the Clipboard class. Each
107 // 1. A constructor that wraps that native clipboard format descriptor.
141 // ObjectType designates the type of data to be stored in the clipboard. This
191 // Buffer designates which clipboard the action should be applied to.
215 // Sets the list of threads that are allowed to access the clipboard.
219 // Returns the clipboard object for the current thread.
221 // Most implementations will have at most one clipboard which will live o
    [all...]
clipboard_aura.cc 5 #include "ui/base/clipboard/clipboard.h"
16 #include "ui/base/clipboard/custom_data_helper.h"
28 // Clipboard data format used by AuraClipboard.
39 // ClipboardData contains data copied to the Clipboard for a variety of formats.
155 // Platform clipboard implementation for Aura. This handles things like format
156 // conversion, versioning of clipboard items etc. The goal is to roughly provide
158 // on gtk or winapi clipboard on win.
172 // Returns the number of entries currently in the clipboard stack.
177 // Returns the data currently on the top of the clipboard stack, NULL if th
469 AuraClipboard* clipboard = GetClipboard(); local
492 AuraClipboard* clipboard = GetClipboard(); local
515 AuraClipboard* clipboard = GetClipboard(); local
    [all...]
clipboard_aurax11.cc 5 #include "ui/base/clipboard/clipboard.h"
22 #include "ui/base/clipboard/custom_data_helper.h"
35 const char kClipboard[] = "CLIPBOARD";
102 // primary and the clipboard buffers. Register anyway just to be safe.
149 bool ContainsFormat(const Clipboard::FormatType& format_type) const;
175 const Clipboard::FormatType& format_type) const {
194 Clipboard::FormatType::FormatType() {
197 Clipboard::FormatType::FormatType(const std::string& native_format)
201 Clipboard::FormatType::~FormatType()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 
  /prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 

Completed in 281 milliseconds