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

  /external/webkit/WebCore/rendering/style/
FillLayer.cpp 23 #include "FillLayer.h"
27 FillLayer::FillLayer(EFillLayerType type)
28 : m_image(FillLayer::initialFillImage(type))
29 , m_xPosition(FillLayer::initialFillXPosition(type))
30 , m_yPosition(FillLayer::initialFillYPosition(type))
31 , m_attachment(FillLayer::initialFillAttachment(type))
32 , m_clip(FillLayer::initialFillClip(type))
33 , m_origin(FillLayer::initialFillOrigin(type))
34 , m_repeatX(FillLayer::initialFillRepeatX(type)
    [all...]
FillLayer.h 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)
    [all...]

Completed in 11 milliseconds