Searched refs:strokeStyle (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DStrokeStyleApplier.h29 virtual void strokeStyle(GraphicsContext*) = 0;
H A DGraphicsContext.h136 , strokeStyle(SolidStroke)
173 StrokeStyle strokeStyle; member in struct:WebCore::GraphicsContextState
203 StrokeStyle strokeStyle() const;
H A DGraphicsContext.cpp128 m_state.strokeStyle = style;
215 StrokeStyle GraphicsContext::strokeStyle() const function in class:WebCore::GraphicsContext
217 return m_state.strokeStyle;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSCanvasRenderingContext2DCustom.cpp62 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const function in class:WebCore::JSCanvasRenderingContext2D
65 return toJS(exec, globalObject(), context->strokeStyle());
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMCountersGraph.js253 ctx.strokeStyle = counterUI.graphColor;
309 ctx.strokeStyle = counterUI.graphColor;
H A DTimelineOverviewPane.js503 ctx.strokeStyle = "rgba(20,0,0,0.8)";
620 this._context.strokeStyle = category.hidden ? this._disabledCategoryBorderStyle : category.borderColor;
806 this._context.strokeStyle = "rgb(51, 51, 51)";
835 this._context.strokeStyle = WebInspector.TimelinePresentationModel.categories()[category].borderColor;
844 this._context.strokeStyle = "rgb(90, 90, 90)";
H A DNativeMemoryGraph.js349 ctx.strokeStyle = counterUI.strokeColor;
H A DFlameChart.js509 context.strokeStyle = "rgba(20,0,0,0.8)";
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DPathBlackBerry.cpp92 applier->strokeStyle(scratch);
117 applier->strokeStyle(scratch);
H A DGraphicsContextBlackBerry.cpp84 platformContext()->setStrokeStyle(static_cast<BlackBerry::Platform::Graphics::StrokeStyle>(m_state.strokeStyle));
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGShape.cpp389 BoundingRectStrokeStyleApplier strokeStyle(this, style());
394 FloatRect strokeBoundingRect = usePath->strokeBoundingRect(&strokeStyle);
399 strokeBoundingBox.unite(path().strokeBoundingRect(&strokeStyle));
H A DRenderSVGShape.h57 void strokeStyle(GraphicsContext* context) function in class:WebCore::BoundingRectStrokeStyleApplier
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DPathCG.cpp170 applier->strokeStyle(&gc);
221 applier->strokeStyle(&graphicsContext);
H A DGraphicsContextCG.cpp251 if (strokeStyle() != NoStroke) {
274 if (strokeStyle() == NoStroke)
287 if (strokeStyle() == DottedStroke || strokeStyle() == DashedStroke) {
310 switch (strokeStyle()) {
488 bool shouldStroke = state.strokePattern || (state.strokeStyle != NoStroke && state.strokeColor.alpha());
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp241 if (strokeStyle() != NoStroke) {
282 StrokeStyle style = graphicsContext->strokeStyle();
362 if (strokeStyle() != NoStroke) {
390 if (strokeStyle() != NoStroke) {
727 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
735 switch (strokeStyle) {
H A DPathCairo.cpp323 applier->strokeStyle(&gc);
351 applier->strokeStyle(&gc);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp655 if (strokeStyle() != NoStroke) {
656 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
676 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha())
695 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
706 if (!m_data->m_opacity || paintingDisabled() || (!fillColor().alpha() && strokeStyle() == NoStroke))
730 if (strokeStyle() != NoStroke) {
731 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
837 if (strokeStyle() != NoStroke) {
838 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
958 StrokeStyle oldStyle = strokeStyle();
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DPathQt.cpp134 applier->strokeStyle(context);
167 applier->strokeStyle(context);
H A DGraphicsContextQt.cpp383 StrokeStyle style = strokeStyle();
1496 void GraphicsContext::setPlatformStrokeStyle(StrokeStyle strokeStyle) argument
1502 newPen.setStyle(toQPenStyle(strokeStyle));
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DInlineTextBox.cpp962 StrokeStyle strokeStyle = SolidStroke; local
965 strokeStyle = SolidStroke;
969 strokeStyle = DoubleStroke;
972 strokeStyle = DottedStroke;
975 strokeStyle = DashedStroke;
978 strokeStyle = WavyStroke;
983 return strokeStyle;
1061 context->adjustLineToPixelBoundaries(p1, p2, strokeThickness, context->strokeStyle());
H A DRenderObject.cpp897 StrokeStyle oldStrokeStyle = graphicsContext->strokeStyle();
923 StrokeStyle oldStrokeStyle = graphicsContext->strokeStyle();
1045 StrokeStyle oldStrokeStyle = graphicsContext->strokeStyle();
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasRenderingContext2D.idl156 [Custom] attribute custom strokeStyle;
H A DCanvasRenderingContext2D.h73 const CanvasStyle& strokeStyle() const { return state().m_strokeStyle; } function in class:WebCore::CanvasRenderingContext2D
H A DCanvasRenderingContext2D.cpp108 virtual void strokeStyle(GraphicsContext* c) function in class:WebCore::CanvasStrokeStyleApplier

Completed in 276 milliseconds