Home
last modified time | relevance | path

Searched refs:fillText (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/html/canvas/
DCanvasRenderingContext2D.h197 void fillText(const String& text, float x, float y);
198 void fillText(const String& text, float x, float y, float maxWidth);
DCanvasRenderingContext2D.idl88 [Custom] void fillText(/* 4 */);
DCanvasRenderingContext2D.cpp1423 void CanvasRenderingContext2D::fillText(const String& text, float x, float y) in fillText() function in WebCore::CanvasRenderingContext2D
1428 void CanvasRenderingContext2D::fillText(const String& text, float x, float y, float maxWidth) in fillText() function in WebCore::CanvasRenderingContext2D
/external/webkit/WebCore/bindings/js/
DJSCanvasRenderingContext2DCustom.cpp378 JSValue JSCanvasRenderingContext2D::fillText(ExecState* exec, const ArgList& args) in fillText() function in WebCore::JSCanvasRenderingContext2D
390 …context->fillText(args.at(0).toString(exec), args.at(1).toFloat(exec), args.at(2).toFloat(exec), a… in fillText()
392 … context->fillText(args.at(0).toString(exec), args.at(1).toFloat(exec), args.at(2).toFloat(exec)); in fillText()
/external/webkit/WebCore/bindings/v8/custom/
DV8CanvasRenderingContext2DCustom.cpp386 context->fillText(text, x, y, maxWidth); in CALLBACK_FUNC_DECL()
388 context->fillText(text, x, y); in CALLBACK_FUNC_DECL()
/external/webkit/WebCore/
DChangeLog-2009-06-1613739 (WebCore::JSCanvasRenderingContext2D::fillText):
15446 (WebCore::JSCanvasRenderingContext2D::fillText):
52215 (WebCore::JSCanvasRenderingContext2D::fillText):
57382 (WebCore::JSCanvasRenderingContext2D::fillText):
59262 for strokeText and fillText, and taking shadows into account.
93110 (WebCore::JSCanvasRenderingContext2D::fillText):
93124 (WebCore::CanvasRenderingContext2D::fillText):
DChangeLog12092 Chromium's canvas forgets its context after fillText again