HomeSort by relevance Sort by last modified time
    Searched refs:setDragImage (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/android/
ClipboardAndroid.h 53 void setDragImage(CachedImage*, const IntPoint&);
ClipboardAndroid.cpp 85 void ClipboardAndroid::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/brew/
ClipboardBrew.h 51 void setDragImage(CachedImage*, const IntPoint&);
ClipboardBrew.cpp 87 void ClipboardBrew::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/dom/
Clipboard.idl 43 [Custom] void setDragImage(in HTMLImageElement image, in long x, in long y)
Clipboard.h 73 virtual void setDragImage(CachedImage*, const IntPoint&) = 0;
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardChromium.h 67 void setDragImage(CachedImage*, const IntPoint&);
91 void setDragImage(CachedImage*, Node*, const IntPoint&);
ClipboardChromium.cpp 158 void ClipboardChromium::setDragImage(CachedImage* image, Node* node, const IntPoint& loc)
173 void ClipboardChromium::setDragImage(CachedImage* img, const IntPoint& loc)
175 setDragImage(img, 0, loc);
180 setDragImage(0, node, loc);
  /external/webkit/Source/WebCore/platform/gtk/
ClipboardGtk.h 63 void setDragImage(CachedImage*, const IntPoint&);
65 void setDragImage(CachedImage*, Node*, const IntPoint&);
ClipboardGtk.cpp 236 void ClipboardGtk::setDragImage(CachedImage* image, const IntPoint& location)
238 setDragImage(image, 0, location);
243 setDragImage(0, element, location);
246 void ClipboardGtk::setDragImage(CachedImage* image, Node* element, const IntPoint& location)
  /external/webkit/Source/WebCore/platform/mac/
ClipboardMac.h 67 void setDragImage(CachedImage*, const IntPoint&);
85 void setDragImage(CachedImage*, Node*, const IntPoint&);
ClipboardMac.mm 325 void ClipboardMac::setDragImage(CachedImage* img, const IntPoint &loc)
327 setDragImage(img, 0, loc);
332 setDragImage(0, node, loc);
335 void ClipboardMac::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
  /external/webkit/Source/WebCore/platform/qt/
ClipboardQt.h 63 void setDragImage(CachedImage*, const IntPoint&);
83 void setDragImage(CachedImage*, Node*, const IntPoint& loc);
ClipboardQt.cpp 224 void ClipboardQt::setDragImage(CachedImage* image, const IntPoint& point)
226 setDragImage(image, 0, point);
231 setDragImage(0, node, point);
234 void ClipboardQt::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
  /external/webkit/Source/WebCore/platform/efl/
ClipboardEfl.h 47 void setDragImage(CachedImage*, const IntPoint&);
ClipboardEfl.cpp 103 void ClipboardEfl::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/haiku/
ClipboardHaiku.h 56 void setDragImage(CachedImage*, const IntPoint&);
ClipboardHaiku.cpp 158 void ClipboardHaiku::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.h 54 void setDragImage(CachedImage*, const IntPoint&);
ClipboardWx.cpp 98 void ClipboardWx::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.h 70 void setDragImage(CachedImage*, const IntPoint&);
91 void setDragImage(CachedImage*, Node*, const IntPoint&);
  /external/webkit/Source/WebCore/bindings/js/
JSClipboardCustom.cpp 100 JSValue JSClipboard::setDragImage(ExecState* exec)
109 return throwError(exec, createSyntaxError(exec, "setDragImage: Invalid number of arguments"));
124 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ClipboardCustom.cpp 101 INC_STATS("DOM.Clipboard.setDragImage()");
108 return throwError("setDragImage: Invalid number of arguments", V8Proxy::SyntaxError);
121 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.h 76 virtual void setDragImage(const WebCore::IntPoint& clientPosition, PassRefPtr<ShareableBitmap> dragImage, bool isLinkDrag);
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 105 virtual void setDragImage(const WebCore::IntPoint& clientPosition, PassRefPtr<ShareableBitmap> dragImage, bool isLinkDrag) = 0;

Completed in 195 milliseconds

1 2