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

  /external/webkit/Source/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 66 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const
69 return toJS(exec, context->strokeStyle());
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContext.h 76 virtual void setStrokeStyle(StrokeStyle style);
184 StrokeStyle strokeStyle;
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGPath.cpp 59 void strokeStyle(GraphicsContext* gc)
102 BoundingRectStrokeStyleApplier strokeStyle(this, style());
103 return m_path.strokeContains(&strokeStyle, point);
323 BoundingRectStrokeStyleApplier strokeStyle(this, style());
324 m_strokeAndMarkerBoundingBox.unite(m_path.strokeBoundingRect(&strokeStyle));
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 146 enum StrokeStyle {
171 , strokeStyle(SolidStroke)
209 StrokeStyle strokeStyle;
239 StrokeStyle strokeStyle() const;
240 void setStrokeStyle(StrokeStyle);
563 void setPlatformStrokeStyle(StrokeStyle);
580 static void adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeStyle);
GraphicsContext.cpp 121 void GraphicsContext::setStrokeStyle(StrokeStyle style)
123 m_state.strokeStyle = style;
187 StrokeStyle GraphicsContext::strokeStyle() const
189 return m_state.strokeStyle;
692 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle)
718 void GraphicsContext::adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeStyle penStyle)
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 117 StrokeStyle strokeStyle;
138 , strokeStyle(NoStroke)
184 strokeStyle = other->strokeStyle;
346 if (strokeStyle == DottedStroke) {
350 } else if (strokeStyle == DashedStroke) {
373 && (strokeStyle == NoStroke || !strokeColor.alpha()));
571 StrokeStyle PainterOpenVG::strokeStyle() cons
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 95 virtual void strokeStyle(GraphicsContext* c)
334 CanvasStyle* CanvasRenderingContext2D::strokeStyle() const
    [all...]

Completed in 240 milliseconds