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

  /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/platform/android/
ClipboardAndroid.cpp 85 void ClipboardAndroid::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/brew/
ClipboardBrew.cpp 87 void ClipboardBrew::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/efl/
ClipboardEfl.cpp 103 void ClipboardEfl::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/haiku/
ClipboardHaiku.cpp 158 void ClipboardHaiku::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.cpp 98 void ClipboardWx::setDragImage(CachedImage*, const IntPoint&)
  /external/webkit/Source/WebCore/platform/chromium/
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.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/qt/
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/win/
ClipboardWin.cpp 595 void ClipboardWin::setDragImage(CachedImage* image, Node *node, const IntPoint &loc)
610 void ClipboardWin::setDragImage(CachedImage* img, const IntPoint &loc)
612 setDragImage(img, 0, loc);
617 setDragImage(0, node, loc);

Completed in 258 milliseconds