Home | History | Annotate | Download | only in style

Lines Matching defs:FillLayer

62 struct FillLayer : FastAllocBase {
64 FillLayer(EFillLayerType);
65 ~FillLayer();
79 const FillLayer* next() const { return m_next; }
80 FillLayer* next() { return m_next; }
117 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
119 FillLayer& operator=(const FillLayer& o);
120 FillLayer(const FillLayer& o);
122 bool operator==(const FillLayer& o) const;
123 bool operator!=(const FillLayer& o) const
164 FillLayer() { }
194 FillLayer* m_next;