Searched defs:ShadowData (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
H A DShadowData.cpp23 #include "ShadowData.h"
32 ShadowData::ShadowData(const ShadowData& o) function in class:WebCore::ShadowData
41 m_next = o.m_next ? new ShadowData(*o.m_next) : 0;
44 bool ShadowData::operator==(const ShadowData& o) const
59 static inline void calculateShadowExtent(const ShadowData* shadow, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom)
74 void ShadowData::adjustRectForShadow(IntRect& rect, int additionalOutlineSize) const
87 void ShadowData
[all...]
H A DShadowData.h39 class ShadowData { class in namespace:WebCore
42 ShadowData() function in class:WebCore::ShadowData
53 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color) function in class:WebCore::ShadowData
65 ShadowData(const ShadowData& o);
66 ~ShadowData() { delete m_next; }
68 bool operator==(const ShadowData& o) const;
69 bool operator!=(const ShadowData& o) const
82 const ShadowData* next() const { return m_next; }
83 void setNext(ShadowData* shado
[all...]

Completed in 25 milliseconds