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

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 39 , strokeStyle(SolidStroke)
58 StrokeStyle strokeStyle;
GraphicsContext.h 140 enum StrokeStyle {
166 StrokeStyle strokeStyle() const;
167 void setStrokeStyle(const StrokeStyle& style);
436 void setPlatformStrokeStyle(const StrokeStyle&);
450 static void adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, const StrokeStyle&);
GraphicsContext.cpp 117 void GraphicsContext::setStrokeStyle(const StrokeStyle& style)
119 m_common->state.strokeStyle = style;
162 StrokeStyle GraphicsContext::strokeStyle() const
164 return m_common->state.strokeStyle;
510 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle&)
515 void GraphicsContext::adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, const StrokeStyle& penStyle)
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 71 StrokeStyle strokeStyle() const;
72 void setStrokeStyle(const StrokeStyle&);
GraphicsContextOpenVG.cpp 243 StrokeStyle oldStyle = m_data->strokeStyle();
260 StrokeStyle oldStyle = m_data->strokeStyle();
521 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle)
526 m_data->setStrokeStyle(strokeStyle);
PainterOpenVG.cpp 114 StrokeStyle strokeStyle;
130 , strokeStyle(NoStroke)
155 strokeStyle = other->strokeStyle;
306 if (strokeStyle == DottedStroke) {
310 } else if (strokeStyle == DashedStroke) {
333 && (strokeStyle == NoStroke || !strokeColor.alpha()));
493 StrokeStyle PainterOpenVG::strokeStyle() cons
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
PlatformContextSkia.h 122 void setStrokeStyle(WebCore::StrokeStyle);
131 WebCore::StrokeStyle getStrokeStyle() const;
PlatformContextSkia.cpp 75 WebCore::StrokeStyle m_strokeStyle;
451 WebCore::StrokeStyle PlatformContextSkia::getStrokeStyle() const
456 void PlatformContextSkia::setStrokeStyle(WebCore::StrokeStyle strokeStyle)
458 m_state->m_strokeStyle = strokeStyle;
GraphicsContextSkia.cpp 476 if (strokeStyle() != NoStroke) {
497 if (strokeStyle() != NoStroke) {
544 StrokeStyle penStyle = strokeStyle();
564 if (strokeStyle() == DottedStroke || strokeStyle() == DashedStroke) {
1037 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& stroke)
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 100 if (strokeStyle() != NoStroke)
110 if (strokeStyle() == NoStroke)
123 if (strokeStyle() != NoStroke)
150 if (strokeStyle() != NoStroke)
494 switch (strokeStyle()) {
512 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle)
  /external/webkit/WebCore/rendering/
RenderMediaControlsChromium.cpp 204 StrokeStyle originalStyle = context->strokeStyle();
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 248 if (strokeStyle() != NoStroke) {
266 StrokeStyle style = strokeStyle();
371 if (strokeStyle() != NoStroke) {
382 if (paintingDisabled() || strokeStyle() == NoStroke)
411 switch (strokeStyle()) {
489 if (strokeStyle() != NoStroke) {
669 StrokeStyle savedStrokeStyle = strokeStyle();
764 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 137 static Qt::PenStyle toQPenStyle(StrokeStyle style)
335 StrokeStyle style = strokeStyle();
446 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f || !strokeColor().alpha())
1119 void GraphicsContext::setPlatformStrokeStyle(const StrokeStyle& strokeStyle)
1125 newPen.setStyle(toQPenStyle(strokeStyle));
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 288 switch (mCG->strokeStyle()) {
423 if (strokeStyle() != NoStroke && strokeColor().alpha()) {
439 StrokeStyle style = strokeStyle();
567 if (strokeStyle() != NoStroke) {
594 if (strokeStyle() == NoStroke) {
638 if (strokeStyle() != NoStroke) {
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 349 static HPEN createPen(const Color& col, double fWidth, StrokeStyle style)
656 if (strokeStyle() != NoStroke) {
657 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
685 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha())
704 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
716 if (!m_data->m_opacity || paintingDisabled() || (!fillColor().alpha() && strokeStyle() == NoStroke))
739 if (strokeStyle() != NoStroke) {
740 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
803 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || rect.isEmpty())
817 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
    [all...]

Completed in 827 milliseconds