/external/webkit/WebCore/platform/graphics/wx/ |
D | GraphicsContextWx.cpp | 203 …->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in drawRect() 216 …->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in drawLine() 226 …->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in drawEllipse() 235 …->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in strokeArc() 250 …->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in drawConvexPolygon() 442 … m_data->context->SetPen(wxPen(color, strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in setPlatformStrokeColor() 451 … m_data->context->SetPen(wxPen(strokeColor(), thickness, strokeStyleToWxPenStyle(strokeStyle()))); in setPlatformStrokeThickness()
|
/external/webkit/WebCore/platform/graphics/ |
D | GraphicsContextPrivate.h | 39 , strokeStyle(SolidStroke) in GraphicsContextState() 58 StrokeStyle strokeStyle; member
|
D | StrokeStyleApplier.h | 29 virtual void strokeStyle(GraphicsContext*) = 0;
|
D | GraphicsContext.cpp | 119 m_common->state.strokeStyle = style; in setStrokeStyle() 165 StrokeStyle GraphicsContext::strokeStyle() const in strokeStyle() function in WebCore::GraphicsContext 167 return m_common->state.strokeStyle; in strokeStyle()
|
D | GraphicsContext.h | 166 StrokeStyle strokeStyle() const;
|
/external/webkit/WebCore/rendering/ |
D | RenderPath.cpp | 56 void strokeStyle(GraphicsContext* gc) in strokeStyle() function in WebCore::BoundingRectStrokeStyleApplier 100 BoundingRectStrokeStyleApplier strokeStyle(this, style()); in strokeContains() local 101 return m_path.strokeContains(&strokeStyle, point); in strokeContains() 127 BoundingRectStrokeStyleApplier strokeStyle(this, style()); in repaintRectInLocalCoordinates() local 128 m_cachedLocalRepaintRect = m_path.strokeBoundingRect(&strokeStyle); in repaintRectInLocalCoordinates()
|
/external/webkit/WebCore/platform/graphics/cairo/ |
D | GraphicsContextCairo.cpp | 133 if (strokeStyle() != NoStroke) { in drawRect() 183 StrokeStyle style = strokeStyle(); in drawLine() 290 if (strokeStyle() != NoStroke) { in drawEllipse() 301 if (paintingDisabled() || strokeStyle() == NoStroke) in strokeArc() 330 switch (strokeStyle()) { in strokeArc() 408 if (strokeStyle() != NoStroke) { in drawConvexPolygon() 596 StrokeStyle savedStrokeStyle = strokeStyle(); in drawLineForText() 691 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle) in setPlatformStrokeStyle() argument 699 switch (strokeStyle) { in setPlatformStrokeStyle()
|
D | PathCairo.cpp | 272 applier->strokeStyle(&gc); in strokeBoundingRect() 298 applier->strokeStyle(&gc); in strokeContains()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 121 if (strokeStyle() != NoStroke) { in drawRect() 144 if (strokeStyle() == NoStroke) in drawLine() 157 if (strokeStyle() == DottedStroke || strokeStyle() == DashedStroke) { in drawLine() 180 switch (strokeStyle()) { in drawLine() 279 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f) in strokeArc() 312 switch (strokeStyle()) { in strokeArc() 428 …bool shouldStroke = state.strokeColorSpace == PatternColorSpace || (state.strokeStyle != NoStroke … in calculateDrawingMode()
|
D | PathCG.cpp | 149 applier->strokeStyle(&gc); in strokeContains() 181 applier->strokeStyle(&graphicsContext); in strokeBoundingRect()
|
/external/webkit/WebCore/platform/graphics/wince/ |
D | GraphicsContextWince.cpp | 656 if (strokeStyle() != NoStroke) { in drawRect() 657 pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawRect() 685 …if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha(… in drawLine() 704 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawLine() 716 …if (!m_data->m_opacity || paintingDisabled() || (!fillColor().alpha() && strokeStyle() == NoStroke… in drawEllipse() 739 if (strokeStyle() != NoStroke) { in drawEllipse() 740 pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawEllipse() 803 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || rect.isEmpty()) in strokeArc() 817 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in strokeArc() 928 if (strokeStyle() != NoStroke) { in drawConvexPolygon() [all …]
|
/external/webkit/WebCore/platform/graphics/android/ |
D | GraphicsContextAndroid.cpp | 281 switch (mCG->strokeStyle()) { in setup_paint_stroke() 421 if (strokeStyle() != NoStroke && strokeColor().alpha()) { in drawRect() 434 StrokeStyle style = strokeStyle(); in drawLine() 562 if (strokeStyle() != NoStroke) { in drawEllipse() 589 if (strokeStyle() == NoStroke) { in strokeArc() 633 if (strokeStyle() != NoStroke) { in drawConvexPolygon()
|
D | PathAndroid.cpp | 370 applier->strokeStyle(scratch); in strokeBoundingRect() 385 applier->strokeStyle(scratch); in strokeContains()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | GraphicsContextSkia.cpp | 455 if (strokeStyle() != NoStroke) { in drawConvexPolygon() 476 if (strokeStyle() != NoStroke) { in drawEllipse() 519 StrokeStyle penStyle = strokeStyle(); in drawLine() 537 if (strokeStyle() == DottedStroke || strokeStyle() == DashedStroke) { in drawLine() 1098 if (strokeStyle() == NoStroke) { in strokeArc()
|
D | PathSkia.cpp | 292 applier->strokeStyle(scratch); in strokeBoundingRect() 305 applier->strokeStyle(scratch); in strokeContains()
|
D | PlatformContextSkia.cpp | 414 void PlatformContextSkia::setStrokeStyle(WebCore::StrokeStyle strokeStyle) in setStrokeStyle() argument 416 m_state->m_strokeStyle = strokeStyle; in setStrokeStyle()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | PathQt.cpp | 98 applier->strokeStyle(gc); in strokeContains() 131 applier->strokeStyle(gc); in strokeBoundingRect()
|
D | GraphicsContextQt.cpp | 460 StrokeStyle style = strokeStyle(); in drawLine() 571 …if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f || !strokeColor()… in strokeArc() 1152 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle) in setPlatformStrokeStyle() argument 1158 newPen.setStyle(toQPenStyle(strokeStyle)); in setPlatformStrokeStyle()
|
/external/webkit/WebCore/inspector/front-end/ |
D | ResourcesPanel.js | 805 ctx.strokeStyle = "rgba(0, 0, 0, 0.6)"; 896 ctx.strokeStyle = "white"; 910 ctx.strokeStyle = "rgba(0, 0, 0, 1)"; 954 ctx.strokeStyle = "rgba(0, 0, 0, 0.2)"; 962 ctx.strokeStyle = "rgba(255, 255, 255, 0.2)";
|
D | SourceFrame.js | 538 ctx.strokeStyle = "rgb(0, 103, 205)";
|
/external/webkit/WebCore/bindings/js/ |
D | JSCanvasRenderingContext2DCustom.cpp | 68 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const in strokeStyle() function in WebCore::JSCanvasRenderingContext2D 70 return toJS(exec, impl()->strokeStyle()); in strokeStyle()
|
/external/webkit/WebCore/html/canvas/ |
D | CanvasRenderingContext2D.h | 66 CanvasStyle* strokeStyle() const;
|
D | CanvasRenderingContext2D.idl | 112 attribute [Custom] custom strokeStyle;
|
D | CanvasRenderingContext2D.cpp | 82 virtual void strokeStyle(GraphicsContext* c) in strokeStyle() function in WebCore::CanvasStrokeStyleApplier 164 CanvasStyle* CanvasRenderingContext2D::strokeStyle() const in strokeStyle() function in WebCore::CanvasRenderingContext2D
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8CanvasRenderingContext2DCustom.cpp | 79 return toV8(impl->strokeStyle()); in ACCESSOR_GETTER()
|