Home
last modified time | relevance | path

Searched refs:strokeStyle (Results 1 – 25 of 28) sorted by relevance

12

/external/webkit/WebCore/platform/graphics/wx/
DGraphicsContextWx.cpp203 …->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/
DGraphicsContextPrivate.h39 , strokeStyle(SolidStroke) in GraphicsContextState()
58 StrokeStyle strokeStyle; member
DStrokeStyleApplier.h29 virtual void strokeStyle(GraphicsContext*) = 0;
DGraphicsContext.cpp119 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()
DGraphicsContext.h166 StrokeStyle strokeStyle() const;
/external/webkit/WebCore/rendering/
DRenderPath.cpp56 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/
DGraphicsContextCairo.cpp133 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()
DPathCairo.cpp272 applier->strokeStyle(&gc); in strokeBoundingRect()
298 applier->strokeStyle(&gc); in strokeContains()
/external/webkit/WebCore/platform/graphics/cg/
DGraphicsContextCG.cpp121 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()
DPathCG.cpp149 applier->strokeStyle(&gc); in strokeContains()
181 applier->strokeStyle(&graphicsContext); in strokeBoundingRect()
/external/webkit/WebCore/platform/graphics/wince/
DGraphicsContextWince.cpp656 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/
DGraphicsContextAndroid.cpp281 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()
DPathAndroid.cpp370 applier->strokeStyle(scratch); in strokeBoundingRect()
385 applier->strokeStyle(scratch); in strokeContains()
/external/webkit/WebCore/platform/graphics/skia/
DGraphicsContextSkia.cpp455 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()
DPathSkia.cpp292 applier->strokeStyle(scratch); in strokeBoundingRect()
305 applier->strokeStyle(scratch); in strokeContains()
DPlatformContextSkia.cpp414 void PlatformContextSkia::setStrokeStyle(WebCore::StrokeStyle strokeStyle) in setStrokeStyle() argument
416 m_state->m_strokeStyle = strokeStyle; in setStrokeStyle()
/external/webkit/WebCore/platform/graphics/qt/
DPathQt.cpp98 applier->strokeStyle(gc); in strokeContains()
131 applier->strokeStyle(gc); in strokeBoundingRect()
DGraphicsContextQt.cpp460 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/
DResourcesPanel.js805 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)";
DSourceFrame.js538 ctx.strokeStyle = "rgb(0, 103, 205)";
/external/webkit/WebCore/bindings/js/
DJSCanvasRenderingContext2DCustom.cpp68 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/
DCanvasRenderingContext2D.h66 CanvasStyle* strokeStyle() const;
DCanvasRenderingContext2D.idl112 attribute [Custom] custom strokeStyle;
DCanvasRenderingContext2D.cpp82 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/
DV8CanvasRenderingContext2DCustom.cpp79 return toV8(impl->strokeStyle()); in ACCESSOR_GETTER()

12