HomeSort by relevance Sort by last modified time
    Searched defs:ShadowData (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/style/
ShadowData.cpp 23 #include "ShadowData.h"
32 ShadowData::ShadowData(const ShadowData& o)
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::adjustRectForShadow(FloatRect& rect, int additionalOutlineSize) cons
    [all...]
ShadowData.h 39 class ShadowData {
42 ShadowData()
53 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color)
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* shadow) { m_next = shadow;
    [all...]

Completed in 247 milliseconds