HomeSort by relevance Sort by last modified time
    Searched refs:toDataURL (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.idl 37 [Custom] DOMString toDataURL(in [ConvertUndefinedOrNullToNullString] DOMString type)
HTMLCanvasElement.h 94 String toDataURL(const String& mimeType, const double* quality, ExceptionCode&);
95 String toDataURL(const String& mimeType, ExceptionCode& ec) { return toDataURL(mimeType, 0, ec); }
HTMLCanvasElement.cpp 347 String HTMLCanvasElement::toDataURL(const String& mimeType, const double* quality, ExceptionCode& ec)
374 return buffer()->toDataURL(lowercaseMimeType, quality);
  /external/webkit/Source/WebCore/dom/
CanvasSurface.cpp 81 String CanvasSurface::toDataURL(const String& mimeType, const double* quality, ExceptionCode& ec)
95 return buffer()->toDataURL("image/png");
97 return buffer()->toDataURL(lowercaseMimeType, quality);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp 91 JSValue JSHTMLCanvasElement::toDataURL(ExecState* exec)
108 result = jsString(exec, canvas->toDataURL(type, qualityPtr, ec));
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ImageBufferGtk.cpp 35 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageBufferWx.cpp 85 String ImageBuffer::toDataURL(const String&, const double*) const
  /external/webkit/Source/WebCore/platform/graphics/
ImageBuffer.h 95 String toDataURL(const String& mimeType, const double* quality = 0) const;
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 16 toDataURL: function() { ... },
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 112 String result = canvas->toDataURL(type, qualityPtr, ec);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 239 String ImageBuffer::toDataURL(const String&, const double*) const
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferWinCE.cpp 251 String ImageBuffer::toDataURL(const String& mimeType, const double*) const
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 304 String ImageBuffer::toDataURL(const String& mimeType, const double*) const
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 346 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageBufferHaiku.cpp 319 String ImageBuffer::toDataURL(const String& mimeType, const double*) const
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 399 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 375 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const

Completed in 308 milliseconds