Searched defs:FillLayer (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
H A DFillLayer.cpp23 #include "FillLayer.h"
27 FillLayer::FillLayer(EFillLayerType type) function in class:WebCore::FillLayer
29 , m_image(FillLayer::initialFillImage(type))
30 , m_xPosition(FillLayer::initialFillXPosition(type))
31 , m_yPosition(FillLayer::initialFillYPosition(type))
32 , m_attachment(FillLayer::initialFillAttachment(type))
33 , m_clip(FillLayer::initialFillClip(type))
34 , m_origin(FillLayer::initialFillOrigin(type))
35 , m_repeatX(FillLayer
53 FillLayer::FillLayer(const FillLayer& o) function in class:WebCore::FillLayer
[all...]
H A DFillLayer.h62 class FillLayer { class in namespace:WebCore
65 FillLayer(EFillLayerType);
66 ~FillLayer();
81 const FillLayer* next() const { return m_next; }
82 FillLayer* next() { return m_next; }
119 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
121 FillLayer& operator=(const FillLayer& o);
122 FillLayer(const FillLayer
168 FillLayer() { } function in class:WebCore::FillLayer
[all...]
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp63 class FillLayer { class in namespace:rdar11293995
/external/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.cpp196 ApplyPropertyFillLayer(CSSPropertyID propertyId, EFillLayerType fillLayerType, FillLayer* (RenderStyle::*accessLayers)(), argument
197 const FillLayer* (RenderStyle::*layers)() const, bool (FillLayer::*test)() const, T (FillLayer::*get)() const,
198 void (FillLayer::*set)(T), void (FillLayer::*clear)(), T (*initial)(EFillLayerType),
199 void (CSSStyleSelector::*mapFill)(CSSPropertyID, FillLayer*, CSSValue*))
215 FillLayer* currChild = (selector->style()->*m_accessLayers)();
216 FillLayer* prevChild = 0;
217 const FillLayer* currParen
[all...]

Completed in 2514 milliseconds