/external/webkit/WebCore/rendering/style/ |
ShadowData.h | 37 struct ShadowData : FastAllocBase { 38 ShadowData() 48 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, const Color& color) 59 ShadowData(const ShadowData& o); 61 ~ShadowData() { delete next; } 63 bool operator==(const ShadowData& o) const; 64 bool operator!=(const ShadowData& o) const 75 ShadowData* next;
|
ShadowData.cpp | 23 #include "ShadowData.h" 27 ShadowData::ShadowData(const ShadowData& o) 35 next = o.next ? new ShadowData(*o.next) : 0; 38 bool ShadowData::operator==(const ShadowData& o) const
|
StyleRareInheritedData.h | 35 struct ShadowData; 60 ShadowData* textShadow; // Our text shadow information for shadowed text drawing.
|
StyleRareNonInheritedData.h | 49 struct ShadowData; 105 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations.
|
SVGRenderStyle.cpp | 148 static void getSVGShadowExtent(ShadowData* shadow, int& top, int& right, int& bottom, int& left) 165 ShadowData* svgShadow = shadow(); 176 ShadowData* svgShadow = shadow();
|
SVGRenderStyle.h | 31 #include "ShadowData.h" 51 // FIXME: These functions should move to ShadowData. 106 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_OWNPTR(ShadowData, shadowSVG, shadow, Shadow, shadow, 0)
|
RenderStyle.cpp | 703 void RenderStyle::setTextShadow(ShadowData* val, bool add) 718 void RenderStyle::setBoxShadow(ShadowData* shadowData, bool add) 722 rareData->m_boxShadow.set(shadowData); 726 shadowData->next = rareData->m_boxShadow.release(); 727 rareData->m_boxShadow.set(shadowData); [all...] |
StyleRareInheritedData.cpp | 57 , textShadow(o.textShadow ? new ShadowData(*o.textShadow) : 0)
|
SVGRenderStyleDefs.h | 34 #include "ShadowData.h" 302 OwnPtr<ShadowData> shadow;
|
SVGRenderStyleDefs.cpp | 220 , shadow(other.shadow ? new ShadowData(*other.shadow) : 0)
|
StyleRareNonInheritedData.cpp | 83 , m_boxShadow(o.m_boxShadow ? new ShadowData(*o.m_boxShadow) : 0)
|
RenderStyle.h | 58 #include "ShadowData.h" 607 ShadowData* textShadow() const { return rareInheritedData->textShadow; } 623 ShadowData* boxShadow() const { return rareNonInheritedData->m_boxShadow.get(); } [all...] |
/external/webkit/WebCore/css/ |
CSSComputedStyleDeclaration.h | 30 class ShadowData; 70 PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int) const;
|
SVGCSSStyleSelector.cpp | 530 return svgstyle->setShadow(m_parentStyle->svgStyle()->shadow() ? new ShadowData(*m_parentStyle->svgStyle()->shadow()) : 0); 553 ShadowData* shadowData = new ShadowData(x, y, blur, 0, Normal, color.isValid() ? color : Color::transparent); 554 svgstyle->setShadow(shadowData);
|
CSSStyleSelector.cpp | [all...] |
CSSComputedStyleDeclaration.cpp | 565 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::valueForShadow(const ShadowData* shadow, int id) const 573 for (const ShadowData* s = shadow; s; s = s->next) { [all...] |
/external/webkit/WebCore/page/animation/ |
AnimationBase.cpp | 136 static inline ShadowData* blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress) 139 return new ShadowData(blendFunc(anim, from->x, to->x, progress), blendFunc(anim, from->y, to->y, progress), 300 class PropertyWrapperShadow : public PropertyWrapperGetter<ShadowData*> { 302 PropertyWrapperShadow(int prop, ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool)) 303 : PropertyWrapperGetter<ShadowData*>(prop, getter) 310 ShadowData* shadowA = (a->*m_getter)(); 311 ShadowData* shadowB = (b->*m_getter)() [all...] |
/external/webkit/WebCore/rendering/ |
InlineTextBox.h | 134 void paintDecoration(GraphicsContext*, int tx, int ty, int decoration, ShadowData*);
|
InlineTextBox.cpp | 276 static void paintTextWithShadows(GraphicsContext* context, const Font& font, const TextRun& textRun, int startOffset, int endOffset, int truncationPoint, const IntPoint& textOrigin, int x, int y, int w, int h, ShadowData* shadow, bool stroked) 408 ShadowData* textShadow = paintInfo.forceBlackText ? 0 : styleToUse->textShadow(); 437 ShadowData* selectionShadow = textShadow; 448 ShadowData* shadow = paintInfo.forceBlackText ? 0 : pseudoStyle->textShadow(); 647 void InlineTextBox::paintDecoration(GraphicsContext* context, int tx, int ty, int deco, ShadowData* shadow) 679 for (ShadowData* s = shadow; s; s = s->next) { [all...] |
InlineFlowBox.cpp | 294 for (ShadowData* shadow = rt->style()->textShadow(); shadow; shadow = shadow->next) { 569 for (ShadowData* shadow = rt->style()->textShadow(); shadow; shadow = shadow->next) { [all...] |
SVGRenderSupport.cpp | 104 if (ShadowData* shadow = svgStyle->shadow()) {
|
RenderBoxModelObject.cpp | [all...] |
/external/webkit/WebCore/page/mac/ |
FrameMac.mm | 419 ShadowData* shadow = style->textShadow();
|
/external/webkit/WebCore/ |
Android.mk | 714 rendering/style/ShadowData.cpp \
|
WebCore.pro | 948 rendering/style/ShadowData.cpp \ [all...] |