/external/webkit/WebCore/platform/graphics/wx/ |
D | GraphicsContextWx.cpp | 203 …m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyl… in drawRect() 216 …m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyl… in drawLine() 226 …m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyl… in drawEllipse() 235 …m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyl… in strokeArc() 250 …m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyl… in drawConvexPolygon() 327 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), wxSOLID)); in drawLineForText() 442 … m_data->context->SetPen(wxPen(color, strokeThickness(), strokeStyleToWxPenStyle(strokeStyle()))); in setPlatformStrokeColor()
|
/external/webkit/WebCore/platform/graphics/ |
D | GraphicsContextPrivate.h | 40 , strokeThickness(0) in GraphicsContextState() 59 float strokeThickness; member
|
D | GraphicsContext.cpp | 113 m_common->state.strokeThickness = thickness; in setStrokeThickness() 160 float GraphicsContext::strokeThickness() const in strokeThickness() function in WebCore::GraphicsContext 162 return m_common->state.strokeThickness; in strokeThickness()
|
D | GraphicsContext.h | 164 float strokeThickness() const;
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | FontQt.cpp | 106 p->setPen(QPen(brush, ctx->strokeThickness())); in drawComplexText() 109 …>setPen(QPen(QBrush(ctx->strokePattern()->createPlatformPattern(affine)), ctx->strokeThickness())); in drawComplexText() 111 p->setPen(QPen(QColor(ctx->strokeColor()), ctx->strokeThickness())); in drawComplexText()
|
D | GraphicsContextQt.cpp | 465 float width = strokeThickness(); in drawLine() 571 …if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f || !strokeColor()… in strokeArc()
|
/external/webkit/WebCore/platform/graphics/cairo/ |
D | GraphicsContextCairo.cpp | 190 float width = strokeThickness(); in drawLine() 292 cairo_set_line_width(cr, strokeThickness()); in drawEllipse() 327 float width = strokeThickness(); in strokeArc() 410 cairo_set_line_width(cr, strokeThickness()); in drawConvexPolygon() 683 void GraphicsContext::setPlatformStrokeThickness(float strokeThickness) in setPlatformStrokeThickness() argument 688 cairo_set_line_width(m_data->cr, strokeThickness); in setPlatformStrokeThickness()
|
D | FontCairo.cpp | 153 cairo_set_line_width(cr, context->strokeThickness()); in drawGlyphs()
|
/external/webkit/WebCore/platform/graphics/wince/ |
D | GraphicsContextWince.cpp | 657 pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawRect() 696 lineRect.setHeight(lineRect.height() + strokeThickness()); in drawLine() 704 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawLine() 740 pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawEllipse() 817 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in strokeArc() 929 pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in drawConvexPolygon() 1064 void GraphicsContext::setPlatformStrokeThickness(float strokeThickness) in setPlatformStrokeThickness() argument 1111 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in strokeRect() 1405 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in strokePath() 1425 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle()); in strokePath()
|
/external/webkit/WebCore/rendering/ |
D | InlineTextBox.cpp | 217 …(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness) in updateGraphicsContext() argument 220 if (strokeThickness > 0) { in updateGraphicsContext() 234 if (strokeThickness != context->strokeThickness()) in updateGraphicsContext() 235 context->setStrokeThickness(strokeThickness); in updateGraphicsContext()
|
D | InlineTextBox.h | 37 …GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness);
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 147 float width = strokeThickness(); in drawLine() 279 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f) in strokeArc() 309 float width = strokeThickness(); in strokeArc() 963 float thickness = max(strokeThickness(), 0.5f); in drawLineForText()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | GraphicsContextSkia.cpp | 534 int width = roundf(strokeThickness()); in drawLine() 675 int thickness = SkMax32(static_cast<int>(strokeThickness()), 1); in drawLineForText() 1103 paint.setStrokeWidth(WebCoreFloatToSkScalar(strokeThickness())); in strokeArc()
|
/external/webkit/WebCore/platform/graphics/gtk/ |
D | FontGtk.cpp | 256 cairo_set_line_width(cr, context->strokeThickness()); in drawComplexText()
|
/external/webkit/WebCore/platform/graphics/android/ |
D | GraphicsContextAndroid.cpp | 507 float lineThickness = context->strokeThickness(); in setrect_for_underline() 592 paint.setStrokeWidth(SkFloatToScalar(this->strokeThickness())); in strokeArc()
|
/external/webkit/WebCore/svg/ |
D | SVGFont.cpp | 544 context->setStrokeThickness(context->strokeThickness() / scale); in drawTextUsingSVGFont()
|
/external/webkit/WebCore/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 1513 textRect.inflate(c->strokeThickness() / 2); in drawTextInternal() 1537 maskImageContext->setStrokeThickness(c->strokeThickness()); in drawTextInternal()
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-12-31 | 1960 Fix SVG stroking. Make strokeThickness() get pushed into CG immediately 2521 (WebCore::GraphicsContext::strokeThickness): 2688 (WebCore::GraphicsContext::strokeThickness):
|