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

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasStyle.h 43 class CanvasStyle : public RefCounted<CanvasStyle> {
45 static PassRefPtr<CanvasStyle> createFromRGBA(RGBA32 rgba) { return adoptRef(new CanvasStyle(rgba)); }
46 static PassRefPtr<CanvasStyle> createFromString(const String& color, Document* = 0);
47 static PassRefPtr<CanvasStyle> createFromStringWithOverrideAlpha(const String& color, float alpha);
48 static PassRefPtr<CanvasStyle> createFromGrayLevelWithAlpha(float grayLevel, float alpha) { return adoptRef(new CanvasStyle(grayLevel, alpha)); }
49 static PassRefPtr<CanvasStyle> createFromRGBAChannels(float r, float g, float b, float a) { return adoptRef(new CanvasStyle(r, g, b, a));
    [all...]
CanvasStyle.cpp 30 #include "core/html/canvas/CanvasStyle.h"
84 CanvasStyle::CanvasStyle(Type type, float overrideAlpha)
90 CanvasStyle::CanvasStyle(RGBA32 rgba)
96 CanvasStyle::CanvasStyle(float grayLevel, float alpha)
102 CanvasStyle::CanvasStyle(float r, float g, float b, float a)
108 CanvasStyle::CanvasStyle(float c, float m, float y, float k, float a
    [all...]
CanvasRenderingContext2D.h 49 class CanvasStyle;
72 CanvasStyle* strokeStyle() const;
73 void setStrokeStyle(PassRefPtr<CanvasStyle>);
75 CanvasStyle* fillStyle() const;
76 void setFillStyle(PassRefPtr<CanvasStyle>);
245 RefPtr<CanvasStyle> m_strokeStyle;
246 RefPtr<CanvasStyle> m_fillStyle;
CanvasRenderingContext2D.cpp 54 #include "core/html/canvas/CanvasStyle.h"
142 : m_strokeStyle(CanvasStyle::createFromRGBA(Color::black))
143 , m_fillStyle(CanvasStyle::createFromRGBA(Color::black))
274 CanvasStyle* CanvasRenderingContext2D::strokeStyle() const
279 void CanvasRenderingContext2D::setStrokeStyle(PassRefPtr<CanvasStyle> prpStyle)
281 RefPtr<CanvasStyle> style = prpStyle;
291 style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->overrideAlpha()));
293 style = CanvasStyle::createFromRGBA(currentColor(canvas()));
306 CanvasStyle* CanvasRenderingContext2D::fillStyle() const
311 void CanvasRenderingContext2D::setFillStyle(PassRefPtr<CanvasStyle> prpStyle
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CanvasRenderingContext2DCustom.cpp 44 #include "core/html/canvas/CanvasStyle.h"
49 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
60 static PassRefPtr<CanvasStyle> toCanvasStyle(v8::Handle<v8::Value> value, v8::Isolate* isolate)
63 return CanvasStyle::createFromGradient(V8CanvasGradient::toNative(v8::Handle<v8::Object>::Cast(value)));
66 return CanvasStyle::createFromPattern(V8CanvasPattern::toNative(v8::Handle<v8::Object>::Cast(value)));
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_html.target.darwin-arm.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-mips.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-x86.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-arm.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-mips.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-x86.mk 187 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \

Completed in 386 milliseconds