Home
last modified time | relevance | path

Searched refs:outlineColor (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/paint/
DInlinePainter.cpp54 Color outlineColor = m_renderInline.resolveColor(styleToUse, CSSPropertyOutlineColor); in paintOutline() local
55 bool useTransparencyLayer = outlineColor.hasAlpha(); in paintOutline()
59 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255); in paintOutline()
60 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue()); in paintOutline()
64 …ForLine(graphicsContext, paintOffset, rects.at(i - 1), rects.at(i), rects.at(i + 1), outlineColor); in paintOutline()
71 …utRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor) in paintOutlineForLine() argument
97 outlineColor, outlineStyle, in paintOutlineForLine()
109 outlineColor, outlineStyle, in paintOutlineForLine()
120 BSTop, outlineColor, outlineStyle, in paintOutlineForLine()
132 BSTop, outlineColor, outlineStyle, in paintOutlineForLine()
[all …]
DObjectPainter.cpp60 Color outlineColor = m_renderObject.resolveColor(styleToUse, CSSPropertyOutlineColor); in paintOutline() local
63 bool useTransparencyLayer = outlineColor.hasAlpha(); in paintOutline()
70 graphicsContext->setFillColor(outlineColor); in paintOutline()
74 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255); in paintOutline()
75 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue()); in paintOutline()
87 …graphicsContext, leftOuter, topOuter, leftInner, bottomOuter, BSLeft, outlineColor, outlineStyle, … in paintOutline()
88 …de(graphicsContext, leftOuter, topOuter, rightOuter, topInner, BSTop, outlineColor, outlineStyle, … in paintOutline()
89 …phicsContext, rightInner, topOuter, rightOuter, bottomOuter, BSRight, outlineColor, outlineStyle, … in paintOutline()
90 …csContext, leftOuter, bottomInner, rightOuter, bottomOuter, BSBottom, outlineColor, outlineStyle, … in paintOutline()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.h141 …dth, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) OVERRIDE;
142 …SONArray>& quad, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) OVERRIDE;
144 …String& frameId, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) OVERRIDE;
254 …ad(PassOwnPtr<FloatQuad>, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor);
DInspectorOverlay.cpp165 …GraphicsContext* context, const FloatQuad& quad, const Color& fillColor, const Color& outlineColor) in drawOutlinedQuad() argument
178 context->setStrokeColor(outlineColor); in drawOutlinedQuad()
208 …void appendQuad(const FloatQuad& quad, const Color& fillColor, const Color& outlineColor = Color::… in appendQuad() argument
213 appendPath(builder.path(), fillColor, outlineColor); in appendQuad()
216 … void appendPath(PassRefPtr<JSONArrayBase> path, const Color& fillColor, const Color& outlineColor) in appendPath() argument
221 if (outlineColor != Color::transparent) in appendPath()
222 object->setString("outlineColor", outlineColor.serialized()); in appendPath()
DInspectorDOMAgent.cpp1293 … y, int width, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) in highlightRect() argument
1296 innerHighlightQuad(quad.release(), color, outlineColor); in highlightRect()
1299 …Ptr<JSONArray>& quadArray, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) in highlightQuad() argument
1306 innerHighlightQuad(quad.release(), color, outlineColor); in highlightQuad()
1309 …assOwnPtr<FloatQuad> quad, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) in innerHighlightQuad() argument
1313 highlightConfig->contentOutline = parseColor(outlineColor); in innerHighlightQuad()
1344 const RefPtr<JSONObject>* outlineColor) in highlightFrame() argument
1352 highlightConfig->contentOutline = parseColor(outlineColor); in highlightFrame()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSPropertyEquality.cpp184 return a.outlineColor() == b.outlineColor() in propertiesEqual()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp1431 result = visitedLink ? visitedLinkOutlineColor() : outlineColor(); in colorIncludingFallback()
DRenderStyle.h1787 StyleColor outlineColor() const { return m_background->outline().color(); } in outlineColor() function
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp2101 …entColor(CSSPropertyOutlineColor).rgb()) : currentColorOrValidColor(*style, style->outlineColor()); in getPropertyCSSValue()