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

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp110 void drawOutlinedQuad(GraphicsContext* context, const FloatQuad& quad, const Color& fillColor, const Color& outlineColor) argument
123 context->setStrokeColor(outlineColor);
H A DInspectorDOMAgent.cpp1183 void InspectorDOMAgent::highlightRect(ErrorString*, int x, int y, int width, int height, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1186 innerHighlightQuad(quad.release(), color, outlineColor);
1189 void InspectorDOMAgent::highlightQuad(ErrorString* errorString, const RefPtr<JSONArray>& quadArray, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1196 innerHighlightQuad(quad.release(), color, outlineColor);
1199 void InspectorDOMAgent::innerHighlightQuad(PassOwnPtr<FloatQuad> quad, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1203 highlightConfig->contentOutline = parseColor(outlineColor);
1234 const RefPtr<JSONObject>* outlineColor)
1241 highlightConfig->contentOutline = parseColor(outlineColor);
1230 highlightFrame( ErrorString*, const String& frameId, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp1438 Color outlineColor = resolveColor(styleToUse, CSSPropertyOutlineColor); local
1439 bool useTransparencyLayer = outlineColor.hasAlpha();
1441 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
1442 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
1446 paintOutlineForLine(graphicsContext, paintOffset, rects.at(i - 1), rects.at(i), rects.at(i + 1), outlineColor);
1454 const Color outlineColor)
1478 outlineColor, outlineStyl
1452 paintOutlineForLine(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor) argument
[all...]
H A DRenderObject.cpp1217 Color outlineColor = resolveColor(styleToUse, CSSPropertyOutlineColor); local
1220 bool useTransparencyLayer = outlineColor.hasAlpha();
1227 graphicsContext->setFillColor(outlineColor);
1231 graphicsContext->beginTransparencyLayer(static_cast<float>(outlineColor.alpha()) / 255);
1232 outlineColor = Color(outlineColor.red(), outlineColor.green(), outlineColor.blue());
1244 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, leftInner, bottomOuter, BSLeft, outlineColor, outlineStyle, outlineWidth, outlineWidth);
1245 drawLineForBoxSide(graphicsContext, leftOuter, topOuter, rightOuter, topInner, BSTop, outlineColor, outlineStyl
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h1752 Color outlineColor() const { return m_background->outline().color(); } function in class:WebCore::RenderStyle

Completed in 61 milliseconds