Home
last modified time | relevance | path

Searched refs:FillLayer (Results 1 – 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/css/
DCSSStyleApplyProperty.cpp196 …ApplyPropertyFillLayer(CSSPropertyID propertyId, EFillLayerType fillLayerType, FillLayer* (RenderS… in ApplyPropertyFillLayer() argument
197 …const FillLayer* (RenderStyle::*layers)() const, bool (FillLayer::*test)() const, T (FillLayer::*g… in ApplyPropertyFillLayer()
198 … void (FillLayer::*set)(T), void (FillLayer::*clear)(), T (*initial)(EFillLayerType), in ApplyPropertyFillLayer()
199 void (CSSStyleSelector::*mapFill)(CSSPropertyID, FillLayer*, CSSValue*)) in ApplyPropertyFillLayer()
215 FillLayer* currChild = (selector->style()->*m_accessLayers)(); in applyInheritValue()
216 FillLayer* prevChild = 0; in applyInheritValue()
217 const FillLayer* currParent = (selector->parentStyle()->*m_layers)(); in applyInheritValue()
221 currChild = new FillLayer(m_fillLayerType); in applyInheritValue()
239 FillLayer* currChild = (selector->style()->*m_accessLayers)(); in applyInitialValue()
247 FillLayer* currChild = (selector->style()->*m_accessLayers)(); in applyValue()
[all …]
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*, CSSValue*);
[all …]
DCSSComputedStyleDeclaration.cpp855 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->… in getPropertyCSSValue()
867 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) { in getPropertyCSSValue()
878 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->b… in getPropertyCSSValue()
883 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
890 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style-… in getPropertyCSSValue()
895 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
902 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : sty… in getPropertyCSSValue()
907 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
914 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskAttachment ? style->maskLayers() : st… in getPropertyCSSValue()
919 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
[all …]
DCSSStyleSelector.cpp6361 void CSSStyleSelector::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) in mapFillAttachment()
6364 layer->setAttachment(FillLayer::initialFillAttachment(layer->type())); in mapFillAttachment()
6387 void CSSStyleSelector::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) in mapFillClip()
6390 layer->setClip(FillLayer::initialFillClip(layer->type())); in mapFillClip()
6401 void CSSStyleSelector::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) in mapFillComposite()
6404 layer->setComposite(FillLayer::initialFillComposite(layer->type())); in mapFillComposite()
6415 void CSSStyleSelector::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) in mapFillOrigin()
6418 layer->setOrigin(FillLayer::initialFillOrigin(layer->type())); in mapFillOrigin()
6448 void CSSStyleSelector::mapFillImage(CSSPropertyID property, FillLayer* layer, CSSValue* value) in mapFillImage()
6451 layer->setImage(FillLayer::initialFillImage(layer->type())); in mapFillImage()
[all …]
/external/webkit/Source/WebCore/rendering/style/
DFillLayer.cpp27 FillLayer::FillLayer(EFillLayerType type) in FillLayer() function in WebCore::FillLayer
29 , m_image(FillLayer::initialFillImage(type)) in FillLayer()
30 , m_xPosition(FillLayer::initialFillXPosition(type)) in FillLayer()
31 , m_yPosition(FillLayer::initialFillYPosition(type)) in FillLayer()
32 , m_attachment(FillLayer::initialFillAttachment(type)) in FillLayer()
33 , m_clip(FillLayer::initialFillClip(type)) in FillLayer()
34 , m_origin(FillLayer::initialFillOrigin(type)) in FillLayer()
35 , m_repeatX(FillLayer::initialFillRepeatX(type)) in FillLayer()
36 , m_repeatY(FillLayer::initialFillRepeatY(type)) in FillLayer()
37 , m_composite(FillLayer::initialFillComposite(type)) in FillLayer()
[all …]
DFillLayer.h62 class FillLayer {
65 FillLayer(EFillLayerType);
66 ~FillLayer();
81 const FillLayer* next() const { return m_next; } in next()
82 FillLayer* next() { return m_next; } in next()
119 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } } in setNext()
121 FillLayer& operator=(const FillLayer& o);
122 FillLayer(const FillLayer& o);
124 bool operator==(const FillLayer& o) const;
125 bool operator!=(const FillLayer& o) const
[all …]
DStyleBackgroundData.h48 const FillLayer& background() const { return m_background; } in background()
58 FillLayer m_background;
DStyleRareNonInheritedData.h121 FillLayer m_mask;
DRenderStyle.h577 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); } in accessBackgroundLayers()
578 const FillLayer* backgroundLayers() const { return &(m_background->background()); } in backgroundLayers()
591 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); } in accessMaskLayers()
592 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); } in maskLayers()
960 …void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer… in clearBackgroundLayers()
961 …void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = pare… in inheritBackgroundLayers()
971 void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); } in clearMaskLayers()
972 …void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; } in inheritMaskLayers()
DStyleRareNonInheritedData.cpp55 , m_mask(FillLayer(MaskFillLayer)) in StyleRareNonInheritedData()
/external/webkit/Source/WebCore/page/animation/
DAnimationBase.cpp449 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*…
457 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const) in FillLayerPropertyWrapperGetter()
462 virtual bool equals(const FillLayer* a, const FillLayer* b) const in equals()
474 T (FillLayer::*m_getter)() const;
480 FillLayerPropertyWrapper(T (FillLayer::*getter)() const, void (FillLayer::*setter)(T)) in FillLayerPropertyWrapper()
486 …virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer*… in blend()
492 void (FillLayer::*m_setter)(T);
498 typedef const FillLayer* (RenderStyle::*LayersGetter)() const;
499 typedef FillLayer* (RenderStyle::*LayersAccessor)();
[all …]
/external/webkit/Source/WebCore/rendering/
DRenderBoxModelObject.h118 …void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int …
131 …void calculateBackgroundImageGeometry(const FillLayer*, int tx, int ty, int w, int h, IntRect& des…
141 IntSize calculateFillTileSize(const FillLayer*, IntSize scaledSize) const;
DInlineFlowBox.h105 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int …
106 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h…
DRenderBox.h412 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, i…
413 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, …
436 …bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackgro…
DRenderTheme.h73 const BorderData&, const FillLayer&, const Color& backgroundColor);
109 …virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color&…
DRenderThemeSafari.h66 const FillLayer&, const Color& backgroundColor) const;
DRenderBox.cpp799 const FillLayer* bgLayer = style()->backgroundLayers(); in paintRootBoxFillLayers()
889 const FillLayer* maskLayers = style()->maskLayers(); in paintMaskImages()
913 … for (const FillLayer* fillLayer = maskLayers->next(); fillLayer; fillLayer = fillLayer->next()) { in paintMaskImages()
946 …for (const FillLayer* maskLayer = style()->maskLayers(); maskLayer; maskLayer = maskLayer->next())… in maskClipRect()
958 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLa… in paintFillLayers()
967 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLay… in paintFillLayer()
973 static bool layersUseImage(WrappedImagePtr image, const FillLayer* layers) in layersUseImage()
975 for (const FillLayer* curLayer = layers; curLayer; curLayer = curLayer->next()) { in layersUseImage()
1006 bool RenderBox::repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool draw… in repaintLayerRectsForImage()
1011 for (const FillLayer* curLayer = layers; curLayer; curLayer = curLayer->next()) { in repaintLayerRectsForImage()
DRenderObject.cpp660 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer) in mustRepaintFillLayers()
1790 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer* newLayers) in updateFillImages()
1797 for (const FillLayer* currNew = newLayers; currNew; currNew = currNew->next()) { in updateFillImages()
1802 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) { in updateFillImages()
2093 … for (const FillLayer* bgLayer = m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) { in arenaDelete()
2098 …for (const FillLayer* maskLayer = m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next())… in arenaDelete()
DRenderThemeMac.h55 const FillLayer&, const Color& backgroundColor) const;
DRenderTheme.cpp72 …bool UAHasAppearance, const BorderData& border, const FillLayer& background, const Color& backgrou… in adjustStyle()
650 …e::isControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& background, in isControlStyled()
DRenderObject.h513 void updateFillImages(const FillLayer*, const FillLayer*);
/external/webkit/Source/WebCore/platform/wx/
DRenderThemeWx.cpp90 const FillLayer&, const Color&) const;
153 … const FillLayer& background, const Color& backgroundColor) const in isControlStyled()
/external/webkit/Source/WebCore/platform/qt/
DRenderThemeQt.h84 …virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color&…
DRenderThemeQt.cpp207 …ControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& fill, const Col… in isControlStyled()
234 …ControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& fill, const Col… in isControlStyled()
/external/webkit/Source/WebCore/editing/
DDeleteButtonController.cpp116 …for (const FillLayer* background = style->backgroundLayers(); background; background = background-… in isDeletableElement()

12