Home
last modified time | relevance | path

Searched refs:ShadowData (Results 1 – 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/rendering/style/
DShadowData.h39 class ShadowData {
42 ShadowData() in ShadowData() function
53ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Co… in ShadowData() function
65 ShadowData(const ShadowData& o);
66 ~ShadowData() { delete m_next; } in ~ShadowData()
68 bool operator==(const ShadowData& o) const;
69 bool operator!=(const ShadowData& o) const
82 const ShadowData* next() const { return m_next; } in next()
83 void setNext(ShadowData* shadow) { m_next = shadow; } in setNext()
96 ShadowData* m_next;
DShadowData.cpp32 ShadowData::ShadowData(const ShadowData& o) in ShadowData() function in WebCore::ShadowData
41 m_next = o.m_next ? new ShadowData(*o.m_next) : 0; in ShadowData()
44 bool ShadowData::operator==(const ShadowData& o) const in operator ==()
59 static inline void calculateShadowExtent(const ShadowData* shadow, int additionalOutlineSize, int& … in calculateShadowExtent()
74 void ShadowData::adjustRectForShadow(IntRect& rect, int additionalOutlineSize) const in adjustRectForShadow()
87 void ShadowData::adjustRectForShadow(FloatRect& rect, int additionalOutlineSize) const in adjustRectForShadow()
DStyleRareInheritedData.h38 class ShadowData; variable
76 ShadowData* textShadow; // Our text shadow information for shadowed text drawing.
DStyleRareNonInheritedData.h43 class ShadowData; variable
114 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations.
DSVGRenderStyle.h84 static ShadowData* initialShadow() { return 0; } in initialShadow()
237 void setShadow(PassOwnPtr<ShadowData> obj) { shadowSVG.access()->shadow = obj; } in setShadow()
310 ShadowData* shadow() const { return shadowSVG->shadow.get(); } in shadow()
DRenderStyle.h100 class ShadowData; variable
654 const ShadowData* textShadow() const { return rareInheritedData->textShadow; } in textShadow()
674 const ShadowData* boxShadow() const { return rareNonInheritedData->m_boxShadow.get(); } in boxShadow()
1039 void setTextShadow(ShadowData* val, bool add=false);
1054 void setBoxShadow(ShadowData* val, bool add=false);
1379 void getShadowExtent(const ShadowData*, int& top, int& right, int& bottom, int& left) const;
1380 void getShadowHorizontalExtent(const ShadowData*, int& left, int& right) const;
1381 void getShadowVerticalExtent(const ShadowData*, int& top, int& bottom) const;
1382 …void getShadowInlineDirectionExtent(const ShadowData* shadow, int& logicalLeft, int& logicalRight)… in getShadowInlineDirectionExtent()
1386 …void getShadowBlockDirectionExtent(const ShadowData* shadow, int& logicalTop, int& logicalBottom) … in getShadowBlockDirectionExtent()
DSVGRenderStyleDefs.cpp168 , shadow(other.shadow ? new ShadowData(*other.shadow) : 0) in StyleShadowSVGData()
DRenderStyle.cpp731 void RenderStyle::setTextShadow(ShadowData* val, bool add) in setTextShadow()
746 void RenderStyle::setBoxShadow(ShadowData* shadowData, bool add) in setBoxShadow()
1033 void RenderStyle::getShadowExtent(const ShadowData* shadow, int &top, int &right, int &bottom, int … in getShadowExtent()
1052 void RenderStyle::getShadowHorizontalExtent(const ShadowData* shadow, int &left, int &right) const in getShadowHorizontalExtent()
1067 void RenderStyle::getShadowVerticalExtent(const ShadowData* shadow, int &top, int &bottom) const in getShadowVerticalExtent()
DStyleRareNonInheritedData.cpp89 , m_boxShadow(o.m_boxShadow ? new ShadowData(*o.m_boxShadow) : 0) in StyleRareNonInheritedData()
DSVGRenderStyleDefs.h213 OwnPtr<ShadowData> shadow;
DStyleRareInheritedData.cpp95 , textShadow(o.textShadow ? new ShadowData(*o.textShadow) : 0) in StyleRareInheritedData()
/external/webkit/Source/WebCore/page/animation/
DAnimationBase.cpp142 static inline ShadowData* blendFunc(const AnimationBase* anim, const ShadowData* from, const Shadow… in blendFunc()
146 return new ShadowData(*to); in blendFunc()
148 return new ShadowData(blendFunc(anim, from->x(), to->x(), progress), in blendFunc()
332 …pertyWrapperShadow(int prop, const ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::… in PropertyWrapperShadow() argument
341 const ShadowData* shadowA = (a->*m_getter)(); in equals()
342 const ShadowData* shadowB = (b->*m_getter)(); in equals()
363 const ShadowData* shadowA = (a->*m_getter)(); in blend()
364 const ShadowData* shadowB = (b->*m_getter)(); in blend()
365ShadowData defaultShadowData(0, 0, 0, 0, Normal, property() == CSSPropertyWebkitBoxShadow, Color::… in blend()
366ShadowData defaultInsetShadowData(0, 0, 0, 0, Inset, property() == CSSPropertyWebkitBoxShadow, Col… in blend()
[all …]
/external/webkit/Source/WebCore/css/
DCSSComputedStyleDeclaration.h36 class ShadowData; variable
77 PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int, RenderStyle*) const;
DSVGCSSStyleSelector.cpp546 …return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->sv… in applySVGProperty()
572ShadowData* shadowData = new ShadowData(x, y, blur, 0, Normal, false, color.isValid() ? color : Co… in applySVGProperty()
DCSSComputedStyleDeclaration.cpp672 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadow(const ShadowData* shadow, int id, … in valueForShadow()
681 for (const ShadowData* s = shadow; s; s = s->next()) { in valueForShadow()
DCSSStyleSelector.cpp5135 …return m_style->setTextShadow(m_parentStyle->textShadow() ? new ShadowData(*m_parentStyle->textSha… in applyProperty()
5136 …return m_style->setBoxShadow(m_parentStyle->boxShadow() ? new ShadowData(*m_parentStyle->boxShadow… in applyProperty()
5159ShadowData* shadowData = new ShadowData(x, y, blur, spread, shadowStyle, id == CSSPropertyWebkitBo… in applyProperty()
/external/webkit/Source/WebCore/rendering/svg/
DSVGRenderSupport.cpp64 if (const ShadowData* shadow = svgStyle->shadow()) in computeRectForRepaint()
92 const ShadowData* shadow = svgStyle->shadow(); in prepareToRenderSVGContent()
282 if (const ShadowData* shadow = svgStyle->shadow()) in intersectRepaintRectWithResources()
298 if (const ShadowData* shadow = svgStyle->shadow()) in intersectRepaintRectWithResources()
DRenderSVGText.cpp267 if (const ShadowData* textShadow = style()->textShadow()) in repaintRectInLocalCoordinates()
DRenderSVGRoot.cpp291 if (const ShadowData* shadow = svgStyle->shadow()) in computeRectForRepaint()
DSVGInlineTextBox.cpp603 const ShadowData* shadow = style->textShadow(); in paintTextWithShadows()
/external/webkit/Source/WebCore/rendering/
DInlineTextBox.h147 …static FloatSize applyShadowToGraphicsContext(GraphicsContext*, const ShadowData*, const FloatRect…
168 … paintDecoration(GraphicsContext*, const FloatPoint& boxOrigin, int decoration, const ShadowData*);
DInlineTextBox.cpp362 FloatSize InlineTextBox::applyShadowToGraphicsContext(GraphicsContext* context, const ShadowData* s… in applyShadowToGraphicsContext()
390 … const FloatRect& boxRect, const ShadowData* shadow, bool stroked, bool horizontal) in paintTextWithShadows()
567 const ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow(); in paint()
600 const ShadowData* selectionShadow = textShadow; in paint()
618 const ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow(); in paint()
877 …coration(GraphicsContext* context, const FloatPoint& boxOrigin, int deco, const ShadowData* shadow) in paintDecoration()
909 for (const ShadowData* s = shadow; s; s = s->next()) { in paintDecoration()
DRenderBoxModelObject.cpp2078 for (const ShadowData* shadow = s->boxShadow(); shadow; shadow = shadow->next()) { in paintBoxShadow()
/external/webkit/Source/WebCore/editing/mac/
DEditorMac.mm110 const ShadowData* shadow = style->textShadow();
/external/webkit/Source/WebCore/
DAndroid.mk979 rendering/style/ShadowData.cpp \

12