Searched refs:FillLayer (Results 1 - 25 of 33) sorted by relevance

12

/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...]
H A DCSSStyleSelector.h247 FillLayer m_backgroundData;
289 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*);
290 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*);
291 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*);
292 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*);
293 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
294 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*);
295 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*);
296 void mapFillSize(CSSPropertyID, FillLayer*, CSSValue*);
297 void mapFillXPosition(CSSPropertyID, FillLayer*, CSSValu
[all...]
H A DCSSComputedStyleDeclaration.cpp843 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->backgroundLayers();
855 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) {
866 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->backgroundLayers();
871 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
878 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style->backgroundLayers();
883 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
890 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : style->backgroundLayers();
895 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
902 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskAttachment ? style->maskLayers() : style->backgroundLayers();
907 for (const FillLayer* currLaye
[all...]
H A DCSSStyleSelector.cpp6238 void CSSStyleSelector::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value)
6241 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
6264 void CSSStyleSelector::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value)
6267 layer->setClip(FillLayer::initialFillClip(layer->type()));
6278 void CSSStyleSelector::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value)
6281 layer->setComposite(FillLayer::initialFillComposite(layer->type()));
6292 void CSSStyleSelector::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value)
6295 layer->setOrigin(FillLayer::initialFillOrigin(layer->type()));
6325 void CSSStyleSelector::mapFillImage(CSSPropertyID property, FillLayer* layer, CSSValue* value)
6328 layer->setImage(FillLayer
[all...]
/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...]
H A DStyleBackgroundData.h29 #include "FillLayer.h"
48 const FillLayer& background() const { return m_background; }
58 FillLayer m_background;
H A DStyleRareNonInheritedData.h31 #include "FillLayer.h"
121 FillLayer m_mask;
H A DStyleRareNonInheritedData.cpp55 , m_mask(FillLayer(MaskFillLayer))
H A DRenderStyle.h37 #include "FillLayer.h"
577 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
578 const FillLayer* backgroundLayers() const { return &(m_background->background()); }
591 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
592 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); }
947 void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer); }
948 void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = parent; }
958 void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); }
959 void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; }
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp63 class FillLayer { class in namespace:rdar11293995
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp440 // Wrapper base class for an animatable property in a FillLayer
449 virtual bool equals(const FillLayer* a, const FillLayer* b) const = 0;
450 virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer* b, double progress) const = 0;
457 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const)
462 virtual bool equals(const FillLayer* a, const FillLayer* b) const
474 T (FillLayer
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderBoxModelObject.h122 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, int inlineBoxWidth = 0, int inlineBoxHeight = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
135 void calculateBackgroundImageGeometry(const FillLayer*, int tx, int ty, int w, int h, IntRect& destRect, IntPoint& phase, IntSize& tileSize);
145 IntSize calculateFillTileSize(const FillLayer*, IntSize scaledSize) const;
H A DInlineFlowBox.h105 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
106 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
H A DRenderTheme.h73 const BorderData&, const FillLayer&, const Color& backgroundColor);
109 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
H A DRenderBox.h414 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject);
415 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
438 bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackground);
H A DRenderThemeSafari.h66 const FillLayer&, const Color& backgroundColor) const;
H A DRenderThemeMac.h55 const FillLayer&, const Color& backgroundColor) const;
H A DRenderObject.cpp660 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer)
1813 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer* newLayers)
1820 for (const FillLayer* currNew = newLayers; currNew; currNew = currNew->next()) {
1825 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) {
2120 for (const FillLayer* bgLayer = m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) {
2125 for (const FillLayer* maskLayer = m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
H A DRenderBox.cpp799 const FillLayer* bgLayer = style()->backgroundLayers();
894 const FillLayer* maskLayers = style()->maskLayers();
918 for (const FillLayer* fillLayer = maskLayers->next(); fillLayer; fillLayer = fillLayer->next()) {
951 for (const FillLayer* maskLayer = style()->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
963 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
972 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
978 static bool layersUseImage(WrappedImagePtr image, const FillLayer* layers)
980 for (const FillLayer* curLayer = layers; curLayer; curLayer = curLayer->next()) {
1011 bool RenderBox::repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackground)
1016 for (const FillLayer* curLaye
[all...]
H A DRenderObject.h515 void updateFillImages(const FillLayer*, const FillLayer*);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DBaseLayerAndroid.cpp126 FillLayer* layers = style->accessBackgroundLayers();
342 FillLayer* layers = style->accessBackgroundLayers();
/external/webkit/Source/WebCore/platform/wx/
H A DRenderThemeWx.cpp90 const FillLayer&, const Color&) const;
153 const FillLayer& background, const Color& backgroundColor) const
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.h84 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
/external/webkit/Source/WebCore/editing/
H A DDeleteButtonController.cpp116 for (const FillLayer* background = style->backgroundLayers(); background; background = background->next()) {

Completed in 336 milliseconds

12