Searched defs:outlineColor (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlinePainter.cpp54 Color outlineColor = m_renderInline.resolveColor(styleToUse, CSSPropertyOutlineColor); local
55 bool useTransparencyLayer = outlineColor.hasAlpha();
59 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
60 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
64 paintOutlineForLine(graphicsContext, paintOffset, rects.at(i - 1), rects.at(i), rects.at(i + 1), outlineColor);
71 const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor)
97 outlineColor, outlineStyl
70 paintOutlineForLine(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor) argument
[all...]
H A DObjectPainter.cpp60 Color outlineColor = m_renderObject.resolveColor(styleToUse, CSSPropertyOutlineColor); local
63 bool useTransparencyLayer = outlineColor.hasAlpha();
70 graphicsContext->setFillColor(outlineColor);
74 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
75 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
87 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, leftInner, bottomOuter, BSLeft, outlineColor, outlineStyle, outlineWidth, outlineWidth);
88 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, rightOuter, topInner, BSTop, outlineColor, outlineStyl
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp165 void drawOutlinedQuad(GraphicsContext* context, const FloatQuad& quad, const Color& fillColor, const Color& outlineColor) argument
178 context->setStrokeColor(outlineColor);
208 void appendQuad(const FloatQuad& quad, const Color& fillColor, const Color& outlineColor = Color::transparent)
213 appendPath(builder.path(), fillColor, outlineColor);
216 void appendPath(PassRefPtr<JSONArrayBase> path, const Color& fillColor, const Color& outlineColor) argument
221 if (outlineColor != Color::transparent)
222 object->setString("outlineColor", outlineColor.serialized());
H A DInspectorDOMAgent.cpp1293 void InspectorDOMAgent::highlightRect(ErrorString*, int x, int y, int width, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1296 innerHighlightQuad(quad.release(), color, outlineColor);
1299 void InspectorDOMAgent::highlightQuad(ErrorString* errorString, const RefPtr<JSONArray>& quadArray, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1306 innerHighlightQuad(quad.release(), color, outlineColor);
1309 void InspectorDOMAgent::innerHighlightQuad(PassOwnPtr<FloatQuad> quad, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1313 highlightConfig->contentOutline = parseColor(outlineColor);
1344 const RefPtr<JSONObject>* outlineColor)
1352 highlightConfig->contentOutline = parseColor(outlineColor);
1340 highlightFrame( ErrorString*, const String& frameId, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h1787 StyleColor outlineColor() const { return m_background->outline().color(); } function in class:blink::RenderStyle

Completed in 111 milliseconds