Searched refs:strokeColor (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium/chrome/browser/ui/cocoa/
H A Dbackground_gradient_view.h19 - (NSColor *)strokeColor;
H A Dvertical_gradient_view.h16 // |strokeColor| accessors in order to provide colors dynamically. If the
31 - (NSColor*)strokeColor;
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.cpp105 , strokeColor(SK_ColorBLACK)
124 , strokeColor(other.strokeColor)
348 if (m_state->strokeColor != c.rgb()) {
349 m_state->strokeColor = c.rgb();
358 if (strokeShader && m_state->strokeColor != Color::black) {
359 m_state->strokeColor = Color::black;
431 paint->setColor(m_state->applyAlpha(m_state->strokeColor));
H A DGraphicsContextAndroid.cpp98 pgc->setStrokeColor(gc->state().strokeColor);
154 return m_state.strokeColor.rgb();
H A DPlatformGraphicsContext.h181 SkColor strokeColor; member in class:WebCore::PlatformGraphicsContext::State
H A DPlatformGraphicsContextSkia.cpp438 paint.setColor(m_state->strokeColor);
469 if (m_state->strokeStyle != NoStroke && (m_state->strokeColor & 0xFF000000)) {
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp107 Color strokeColor = colorWithOverrideAlpha(context->strokeColor().rgb(), context->strokeColor().alpha() / 255.f * state.globalAlpha); local
108 setSourceRGBAFromColor(cr, strokeColor);
269 setSourceRGBAFromColor(cr, strokeColor());
317 setSourceRGBAFromColor(cr, strokeColor());
325 fillRectSourceOver(cr, FloatRect(p1.x() - width/2, p1.y() - width, width, width), strokeColor());
326 fillRectSourceOver(cr, FloatRect(p2.x() - width/2, p2.y(), width, width), strokeColor());
328 fillRectSourceOver(cr, FloatRect(p1.x() - width, p1.y() - width/2, width, width), strokeColor());
329 fillRectSourceOver(cr, FloatRect(p2.x(), p2.y() - width/2, width, width), strokeColor());
[all...]
H A DFontCairo.cpp167 context->strokeColor().getRGBA(red, green, blue, alpha);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DGraphicsContextWx.cpp122 setPlatformStrokeColor(strokeColor(), ColorSpaceDeviceRGB);
201 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
214 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
224 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
233 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
248 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
345 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), wxSOLID));
471 m_data->context->SetPen(wxPen(strokeColor(), thickness, strokeStyleToWxPenStyle(strokeStyle())));
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPainterOpenVG.h88 Color strokeColor() const;
H A DPainterOpenVG.cpp118 Color strokeColor; member in struct:WebCore::PlatformPainterState
185 strokeColor = other->strokeColor;
202 setVGSolidColor(VG_STROKE_PATH, strokeColor);
373 && (strokeStyle == NoStroke || !strokeColor.alpha()));
626 Color PainterOpenVG::strokeColor() const function in class:WebCore::PainterOpenVG
629 return m_state->strokeColor;
637 m_state->strokeColor = color;
H A DGraphicsContextOpenVG.cpp225 Color oldStrokeColor = m_data->strokeColor();
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp122 setPlatformStrokeColor(strokeColor(), strokeColorSpace());
170 if (oldFillColor != strokeColor())
171 setCGFillColor(context, strokeColor(), strokeColorSpace());
179 if (oldFillColor != strokeColor())
248 setCGFillColor(context, strokeColor(), strokeColorSpace()); // The save/restore make it safe to mutate the fill color here without setting it back to the old color.
487 bool shouldStroke = state.strokePattern || (state.strokeStyle != NoStroke && state.strokeColor.alpha());
1262 if (fillColor() != strokeColor())
1263 setCGFillColor(platformContext(), strokeColor(), strokeColorSpace());
1265 if (fillColor() != strokeColor())
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp311 Color strokeColor = context->strokeColor(); local
312 strokeColor.getRGBA(red, green, blue, alpha);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsContextCairoWin.cpp86 setPlatformStrokeColor(strokeColor(), strokeColorSpace());
H A DGraphicsContextCGWin.cpp84 setPlatformStrokeColor(strokeColor(), ColorSpaceDeviceRGB);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontLinux.cpp148 paint.setColor(gc->strokeColor().rgb());
206 setupForTextPainting(&strokePaint, gc->strokeColor().rgb());
/external/webkit/Source/WebCore/rendering/
H A DRenderMediaControlsChromium.cpp191 Color originalColor = context->strokeColor();
220 Color originalColor = context->strokeColor();
H A DInlineTextBox.h39 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
H A DInlineTextBox.cpp320 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace) argument
335 if (strokeColor != context->strokeColor())
336 context->setStrokeColor(strokeColor, colorSpace);
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h169 , strokeColor(Color::black)
205 Color strokeColor; member in struct:WebCore::GraphicsContextState
241 Color strokeColor() const;
H A DGraphicsContext.cpp129 m_state.strokeColor = color;
192 Color GraphicsContext::strokeColor() const function in class:WebCore::GraphicsContext
194 return m_state.strokeColor;
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp652 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
672 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha())
684 TransparentLayerDC transparentDC(m_data, lineRect, 0, strokeColor().alpha());
691 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
727 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
798 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
909 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
1097 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
1374 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp498 void PlatformContextSkia::setStrokeColor(SkColor strokeColor) argument
500 m_state->m_strokeColor = strokeColor;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontQt.cpp107 textStrokePen = QPen(QColor(ctx->strokeColor()), ctx->strokeThickness());

Completed in 9544 milliseconds

12