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

  /external/webkit/WebCore/bindings/js/
JSClipboardCustom.cpp 111 JSValue JSClipboard::setDragImage(ExecState* exec, const ArgList& args)
120 return throwError(exec, SyntaxError, "setDragImage: Invalid number of arguments");
135 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
  /external/webkit/WebCore/platform/android/
ClipboardAndroid.cpp 80 void ClipboardAndroid::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/WebCore/platform/wx/
ClipboardWx.cpp 93 void ClipboardWx::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/WebCore/platform/haiku/
ClipboardHaiku.cpp 153 void ClipboardHaiku::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/WebCore/platform/gtk/
ClipboardGtk.cpp 96 void ClipboardGtk::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/WebCore/platform/qt/
ClipboardQt.cpp 176 void ClipboardQt::setDragImage(CachedImage* image, const IntPoint& point)
178 setDragImage(image, 0, point);
183 setDragImage(0, node, point);
186 void ClipboardQt::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
  /external/webkit/WebCore/platform/chromium/
ClipboardChromium.cpp 214 void ClipboardChromium::setDragImage(CachedImage* image, Node* node, const IntPoint& loc)
229 void ClipboardChromium::setDragImage(CachedImage* img, const IntPoint& loc)
231 setDragImage(img, 0, loc);
236 setDragImage(0, node, loc);
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 609 void ClipboardWin::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
624 void ClipboardWin::setDragImage(CachedImage* img, const IntPoint &loc)
626 setDragImage(img, 0, loc);
631 setDragImage(0, node, loc);

Completed in 811 milliseconds