Searched defs:strokeStyle (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DJSCanvasRenderingContext2DCustom.cpp66 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const function in class:WebCore::JSCanvasRenderingContext2D
69 return toJS(exec, context->strokeStyle());
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGPath.cpp59 void strokeStyle(GraphicsContext* gc) function in class:WebCore::BoundingRectStrokeStyleApplier
102 BoundingRectStrokeStyleApplier strokeStyle(this, style());
103 return m_path.strokeContains(&strokeStyle, point);
323 BoundingRectStrokeStyleApplier strokeStyle(this, style());
324 m_strokeAndMarkerBoundingBox.unite(m_path.strokeBoundingRect(&strokeStyle));
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h171 , strokeStyle(SolidStroke)
209 StrokeStyle strokeStyle; member in struct:WebCore::GraphicsContextState
239 StrokeStyle strokeStyle() const;
H A DGraphicsContext.cpp123 m_state.strokeStyle = style;
187 StrokeStyle GraphicsContext::strokeStyle() const function in class:WebCore::GraphicsContext
189 return m_state.strokeStyle;
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DGraphicsContextHaiku.cpp97 if (strokeStyle() != NoStroke)
107 if (strokeStyle() == NoStroke)
120 if (strokeStyle() != NoStroke)
147 if (strokeStyle() != NoStroke)
492 switch (strokeStyle()) {
510 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp224 StrokeStyle oldStyle = m_data->strokeStyle();
241 StrokeStyle oldStyle = m_data->strokeStyle();
486 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
491 m_data->setStrokeStyle(strokeStyle);
H A DPainterOpenVG.cpp117 StrokeStyle strokeStyle; member in struct:WebCore::PlatformPainterState
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() const function in class:WebCore::PainterOpenVG
574 return m_state->strokeStyle;
582 m_state->strokeStyle
[all...]
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp493 void PlatformContextSkia::setStrokeStyle(StrokeStyle strokeStyle) argument
495 m_state->m_strokeStyle = strokeStyle;
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp95 virtual void strokeStyle(GraphicsContext* c) function in class:WebCore::CanvasStrokeStyleApplier
334 CanvasStyle* CanvasRenderingContext2D::strokeStyle() const function in class:WebCore::CanvasRenderingContext2D
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp268 if (strokeStyle() != NoStroke) {
286 StrokeStyle style = strokeStyle();
391 if (strokeStyle() != NoStroke) {
401 if (paintingDisabled() || strokeStyle() == NoStroke)
430 switch (strokeStyle()) {
505 if (strokeStyle() != NoStroke) {
825 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
833 switch (strokeStyle) {
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp343 StrokeStyle style = strokeStyle();
1249 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
1255 newPen.setStyle(toQPenStyle(strokeStyle));

Completed in 219 milliseconds