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 51 class Clipboard : public RefCounted<Clipboard>, public ScriptWrappable {
53 // Whether this clipboard is serving a drag-drop or copy-paste request.
59 static PassRefPtr<Clipboard> create(ClipboardType, ClipboardAccessPolicy, PassRefPtr<ChromiumDataObject>);
60 ~Clipboard();
116 Clipboard(ClipboardType, ClipboardAccessPolicy, PassRefPtr<ChromiumDataObject>);
Clipboard.cpp 27 #include "core/dom/Clipboard.h"
42 #include "platform/clipboard/ClipboardMimeTypes.h"
43 #include "platform/clipboard/ClipboardUtilities.h"
95 // We provide the IE clipboard types (URL and Text), and the clipboard types specified in the WHATWG Web Applications 1.0 draft
110 PassRefPtr<Clipboard> Clipboard::create(ClipboardType type, ClipboardAccessPolicy policy, PassRefPtr<ChromiumDataObject> dataObject)
112 return adoptRef(new Clipboard(type, policy , dataObject));
115 Clipboard::~Clipboard()
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
Clipboard.java 19 * clipboard.
22 public class Clipboard {
23 // Necessary for coercing clipboard contents to text if they require
24 // access to network resources, etceteras (e.g., URI in clipboard)
32 * @param context for accessing the clipboard
34 public Clipboard(final Context context) {
41 * Returns a new Clipboard object bound to the specified context.
43 * @param context for accessing the clipboard
47 private static Clipboard create(final Context context) {
48 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_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.
147 // Platform clipboard implementation for Aura. This handles things like format
148 // conversion, versioning of clipboard items etc. The goal is to roughly provide
150 // on gtk or winapi clipboard on win.
164 // Returns the number of entries currently in the clipboard stack.
169 // Returns the data currently on the top of the clipboard stack, NULL if th
456 AuraClipboard* clipboard = GetClipboard(); local
479 AuraClipboard* clipboard = GetClipboard(); local
503 AuraClipboard* clipboard = GetClipboard(); local
    [all...]
clipboard_gtk.cc 5 #include "ui/base/clipboard/clipboard.h"
21 #include "ui/base/clipboard/custom_data_helper.h"
66 clipboard_atom_ = XInternAtom(gfx::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(type); local
352 GtkClipboard* clipboard = LookupBackingClipboard(type); local
403 GtkClipboard* clipboard = LookupBackingClipboard(type); local
429 GtkClipboard* clipboard = LookupBackingClipboard(type); local
446 GtkClipboard* clipboard = LookupBackingClipboard(type); local
464 GtkClipboard* clipboard = LookupBackingClipboard(type); local
492 GtkClipboard* clipboard = LookupBackingClipboard(type); local
553 GtkClipboard* clipboard = LookupBackingClipboard(clipboard_type); 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
390 ScopedClipboard clipboard; local
417 ScopedClipboard clipboard; local
439 ScopedClipboard clipboard; local
461 ScopedClipboard clipboard; local
489 ScopedClipboard clipboard; local
535 ScopedClipboard clipboard; local
627 ScopedClipboard clipboard; local
647 ScopedClipboard clipboard; local
    [all...]
clipboard.h 20 #include "ui/base/clipboard/clipboard_types.h"
67 class UI_EXPORT Clipboard : NON_EXPORTED_BASE(public base::ThreadChecker) {
77 // Platform neutral holder for native data representation of a clipboard type.
102 friend class Clipboard;
106 // Platform-specific glue used internally by the Clipboard class. Each
108 // 1. A constructor that wraps that native clipboard format descriptor.
142 // ObjectType designates the type of data to be stored in the clipboard. This
198 // Sets the list of threads that are allowed to access the clipboard.
202 // Returns the clipboard object for the current thread.
204 // Most implementations will have at most one clipboard which will live o
    [all...]
clipboard_aurax11.cc 5 #include "ui/base/clipboard/clipboard.h"
23 #include "ui/base/clipboard/custom_data_helper.h"
36 const char kClipboard[] = "CLIPBOARD";
44 Clipboard::kMimeTypePNG,
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
    [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 270 milliseconds