HomeSort by relevance Sort by last modified time
    Searched refs:ShadowStyle (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 33 enum ShadowStyle { Normal, Inset };
39 ShadowData(const FloatPoint& location, float blur, float spread, ShadowStyle style, const Color& color)
58 ShadowStyle style() const { return m_style; }
67 ShadowStyle m_style;
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlineFlowBoxPainter.h 32 void paintBoxShadow(const PaintInfo&, RenderStyle*, ShadowStyle, const LayoutRect&);
BoxPainter.h 35 static void paintBoxShadow(const PaintInfo&, const LayoutRect&, const RenderStyle*, ShadowStyle, bool includeLogicalLeftEdge = true, bool includeLogicalRightEdge = true);
InlineFlowBoxPainter.cpp 139 void InlineFlowBoxPainter::paintBoxShadow(const PaintInfo& info, RenderStyle* s, ShadowStyle shadowStyle, const LayoutRect& paintRect)
142 BoxPainter::paintBoxShadow(info, paintRect, s, shadowStyle);
146 BoxPainter::paintBoxShadow(info, paintRect, s, shadowStyle, m_inlineFlowBox.includeLogicalLeftEdge(), m_inlineFlowBox.includeLogicalRightEdge());
BoxPainter.cpp     [all...]
  /external/chromium_org/ui/wm/core/
shadow_controller_unittest.cc 125 TEST_F(ShadowControllerTest, ShadowStyle) {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.cpp 551 ShadowStyle shadowStyle = item->style && item->style->getValueID() == CSSValueInset ? Inset : Normal;
557 shadows.append(ShadowData(FloatPoint(x, y), blur, spread, shadowStyle, color));

Completed in 174 milliseconds