/external/webkit/Source/WebCore/rendering/style/ |
D | ShadowData.h | 39 class ShadowData { 42 ShadowData() in ShadowData() function 53 …ShadowData(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;
|
D | ShadowData.cpp | 32 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()
|
D | StyleRareInheritedData.h | 38 class ShadowData; variable 76 ShadowData* textShadow; // Our text shadow information for shadowed text drawing.
|
D | StyleRareNonInheritedData.h | 43 class ShadowData; variable 114 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations.
|
D | SVGRenderStyle.h | 84 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()
|
D | RenderStyle.h | 100 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()
|
D | SVGRenderStyleDefs.cpp | 168 , shadow(other.shadow ? new ShadowData(*other.shadow) : 0) in StyleShadowSVGData()
|
D | RenderStyle.cpp | 731 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()
|
D | StyleRareNonInheritedData.cpp | 89 , m_boxShadow(o.m_boxShadow ? new ShadowData(*o.m_boxShadow) : 0) in StyleRareNonInheritedData()
|
D | SVGRenderStyleDefs.h | 213 OwnPtr<ShadowData> shadow;
|
D | StyleRareInheritedData.cpp | 95 , textShadow(o.textShadow ? new ShadowData(*o.textShadow) : 0) in StyleRareInheritedData()
|
/external/webkit/Source/WebCore/page/animation/ |
D | AnimationBase.cpp | 142 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() 365 …ShadowData defaultShadowData(0, 0, 0, 0, Normal, property() == CSSPropertyWebkitBoxShadow, Color::… in blend() 366 …ShadowData defaultInsetShadowData(0, 0, 0, 0, Inset, property() == CSSPropertyWebkitBoxShadow, Col… in blend() [all …]
|
/external/webkit/Source/WebCore/css/ |
D | CSSComputedStyleDeclaration.h | 36 class ShadowData; variable 77 PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int, RenderStyle*) const;
|
D | SVGCSSStyleSelector.cpp | 546 …return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->sv… in applySVGProperty() 572 …ShadowData* shadowData = new ShadowData(x, y, blur, 0, Normal, false, color.isValid() ? color : Co… in applySVGProperty()
|
D | CSSComputedStyleDeclaration.cpp | 672 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadow(const ShadowData* shadow, int id, … in valueForShadow() 681 for (const ShadowData* s = shadow; s; s = s->next()) { in valueForShadow()
|
D | CSSStyleSelector.cpp | 5135 …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() 5159 …ShadowData* shadowData = new ShadowData(x, y, blur, spread, shadowStyle, id == CSSPropertyWebkitBo… in applyProperty()
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | SVGRenderSupport.cpp | 64 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()
|
D | RenderSVGText.cpp | 267 if (const ShadowData* textShadow = style()->textShadow()) in repaintRectInLocalCoordinates()
|
D | RenderSVGRoot.cpp | 291 if (const ShadowData* shadow = svgStyle->shadow()) in computeRectForRepaint()
|
D | SVGInlineTextBox.cpp | 603 const ShadowData* shadow = style->textShadow(); in paintTextWithShadows()
|
/external/webkit/Source/WebCore/rendering/ |
D | InlineTextBox.h | 147 …static FloatSize applyShadowToGraphicsContext(GraphicsContext*, const ShadowData*, const FloatRect… 168 … paintDecoration(GraphicsContext*, const FloatPoint& boxOrigin, int decoration, const ShadowData*);
|
D | InlineTextBox.cpp | 362 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()
|
D | RenderBoxModelObject.cpp | 2078 for (const ShadowData* shadow = s->boxShadow(); shadow; shadow = shadow->next()) { in paintBoxShadow()
|
/external/webkit/Source/WebCore/editing/mac/ |
D | EditorMac.mm | 110 const ShadowData* shadow = style->textShadow();
|
/external/webkit/Source/WebCore/ |
D | Android.mk | 979 rendering/style/ShadowData.cpp \
|