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

  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 80 StrokeStyle strokeStyle() const;
81 void setStrokeStyle(StrokeStyle);
GraphicsContextOpenVG.cpp 224 StrokeStyle oldStyle = m_data->strokeStyle();
241 StrokeStyle oldStyle = m_data->strokeStyle();
486 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle)
491 m_data->setStrokeStyle(strokeStyle);
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/platform/graphics/skia/
PlatformContextSkia.h 124 void setStrokeStyle(StrokeStyle);
133 StrokeStyle getStrokeStyle() const;
PlatformContextSkia.cpp 93 StrokeStyle m_strokeStyle;
488 StrokeStyle PlatformContextSkia::getStrokeStyle() const
493 void PlatformContextSkia::setStrokeStyle(StrokeStyle strokeStyle)
495 m_state->m_strokeStyle = strokeStyle;
GraphicsContextSkia.cpp 481 if (strokeStyle() != NoStroke) {
514 if (strokeStyle() != NoStroke) {
562 StrokeStyle penStyle = strokeStyle();
584 if (strokeStyle() == DottedStroke || strokeStyle() == DashedStroke) {
    [all...]
  /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/android/context/
PlatformGraphicsContext.h 76 virtual void setStrokeStyle(StrokeStyle style);
184 StrokeStyle strokeStyle;
PlatformGraphicsContextRecording.h 93 virtual void setStrokeStyle(StrokeStyle style);
GraphicsContextAndroid.cpp 373 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle style)
PlatformGraphicsContext.cpp 108 , strokeStyle(SolidStroke)
127 , strokeStyle(other.strokeStyle)
372 void PlatformGraphicsContext::setStrokeStyle(StrokeStyle style)
374 m_state->strokeStyle = style;
455 switch (m_state->strokeStyle) {
PlatformGraphicsContextSkia.cpp 286 if (m_state->strokeStyle != NoStroke) {
303 if (m_state->strokeStyle != NoStroke) {
360 StrokeStyle style = m_state->strokeStyle;
469 if (m_state->strokeStyle != NoStroke && (m_state->strokeColor & 0xFF000000)) {
574 if (m_state->strokeStyle == NoStroke) {
PlatformGraphicsContextRecording.cpp 652 void PlatformGraphicsContextRecording::setStrokeStyle(StrokeStyle style)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 97 if (strokeStyle() != NoStroke)
107 if (strokeStyle() == NoStroke)
120 if (strokeStyle() != NoStroke)
147 if (strokeStyle() != NoStroke)
492 switch (strokeStyle()) {
510 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle)
  /external/webkit/Source/WebCore/rendering/
RenderMediaControlsChromium.cpp 222 StrokeStyle originalStyle = context->strokeStyle();
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 268 if (strokeStyle() != NoStroke) {
286 StrokeStyle style = strokeStyle();
391 if (strokeStyle() != NoStroke) {
401 if (paintingDisabled() || strokeStyle() == NoStroke)
430 switch (strokeStyle()) {
505 if (strokeStyle() != NoStroke) {
622 static inline StrokeStyle focusRingStrokeStyle()
825 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 141 static Qt::PenStyle toQPenStyle(StrokeStyle style)
343 StrokeStyle style = strokeStyle();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 348 static PassOwnPtr<HPEN> createPen(const Color& col, double fWidth, StrokeStyle style)
651 if (strokeStyle() != NoStroke) {
652 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
672 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha())
691 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
702 if (!m_data->m_opacity || paintingDisabled() || (!fillColor().alpha() && strokeStyle() == NoStroke))
726 if (strokeStyle() != NoStroke) {
727 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
784 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || rect.isEmpty())
798 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
    [all...]

Completed in 140 milliseconds