/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | InlinePainter.cpp | 54 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 …]
|
D | ObjectPainter.cpp | 60 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/ |
D | InspectorDOMAgent.h | 141 …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);
|
D | InspectorOverlay.cpp | 165 …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()
|
D | InspectorDOMAgent.cpp | 1293 … 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/ |
D | CSSPropertyEquality.cpp | 184 return a.outlineColor() == b.outlineColor() in propertiesEqual()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.cpp | 1431 result = visitedLink ? visitedLinkOutlineColor() : outlineColor(); in colorIncludingFallback()
|
D | RenderStyle.h | 1787 StyleColor outlineColor() const { return m_background->outline().color(); } in outlineColor() function
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSComputedStyleDeclaration.cpp | 2101 …entColor(CSSPropertyOutlineColor).rgb()) : currentColorOrValidColor(*style, style->outlineColor()); in getPropertyCSSValue()
|