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

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasStyle.h 43 class CanvasStyle FINAL : public RefCountedWillBeGarbageCollected<CanvasStyle> {
45 static PassRefPtrWillBeRawPtr<CanvasStyle> createFromRGBA(RGBA32 rgba) { return adoptRefWillBeNoop(new CanvasStyle(rgba)); }
46 static PassRefPtrWillBeRawPtr<CanvasStyle> createFromString(const String& color);
47 static PassRefPtrWillBeRawPtr<CanvasStyle> createFromStringWithOverrideAlpha(const String& color, float alpha);
48 static PassRefPtrWillBeRawPtr<CanvasStyle> createFromGrayLevelWithAlpha(float grayLevel, float alpha) { return adoptRefWillBeNoop(new CanvasStyle(grayLevel, alpha)); }
49 static PassRefPtrWillBeRawPtr<CanvasStyle> createFromRGBAChannels(float r, float g, float b, float a) { return adoptRefWillBeNoop(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 54 class CanvasStyle;
79 CanvasStyle* strokeStyle() const;
80 void setStrokeStyle(PassRefPtrWillBeRawPtr<CanvasStyle>);
82 CanvasStyle* fillStyle() const;
83 void setFillStyle(PassRefPtrWillBeRawPtr<CanvasStyle>);
271 RefPtrWillBeMember<CanvasStyle> m_strokeStyle;
272 RefPtrWillBeMember<CanvasStyle> m_fillStyle;
CanvasRenderingContext2D.cpp 57 #include "core/html/canvas/CanvasStyle.h"
247 , m_strokeStyle(CanvasStyle::createFromRGBA(Color::black))
248 , m_fillStyle(CanvasStyle::createFromRGBA(Color::black))
410 CanvasStyle* CanvasRenderingContext2D::strokeStyle() const
415 void CanvasRenderingContext2D::setStrokeStyle(PassRefPtrWillBeRawPtr<CanvasStyle> prpStyle)
417 RefPtrWillBeRawPtr<CanvasStyle> style = prpStyle;
427 style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->overrideAlpha()));
429 style = CanvasStyle::createFromRGBA(currentColor(canvas()));
443 CanvasStyle* CanvasRenderingContext2D::fillStyle() const
448 void CanvasRenderingContext2D::setFillStyle(PassRefPtrWillBeRawPtr<CanvasStyle> prpStyle
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/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 PassRefPtrWillBeRawPtr<CanvasStyle> toCanvasStyle(v8::Handle<v8::Value> value, v8::Isolate* isolate)
62 RefPtrWillBeRawPtr<CanvasStyle> canvasStyle = CanvasStyle::createFromGradient(V8CanvasGradient::toImplWithTypeCheck(isolate, value));
63 if (canvasStyle)
64 return canvasStyle;
65 return CanvasStyle::createFromPattern(V8CanvasPattern::toImplWithTypeCheck(isolate, value));
77 if (RefPtrWillBeRawPtr<CanvasStyle> canvasStyle = toCanvasStyle(value, info.GetIsolate()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_html.target.darwin-arm.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-arm64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-mips.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-mips64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-x86.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.darwin-x86_64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-arm.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-arm64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-mips.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-mips64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-x86.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \
webcore_html.target.linux-x86_64.mk 154 third_party/WebKit/Source/core/html/canvas/CanvasStyle.cpp \

Completed in 957 milliseconds