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

  /external/webkit/WebCore/rendering/style/
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
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;

Completed in 25 milliseconds