/external/webkit/Source/WebCore/css/ |
D | CSSStyleApplyProperty.cpp | 196 …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 …]
|
D | CSSStyleSelector.h | 247 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 …]
|
D | CSSComputedStyleDeclaration.cpp | 855 …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 …]
|
D | CSSStyleSelector.cpp | 6361 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/ |
D | FillLayer.cpp | 27 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 …]
|
D | FillLayer.h | 62 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 …]
|
D | StyleBackgroundData.h | 48 const FillLayer& background() const { return m_background; } in background() 58 FillLayer m_background;
|
D | StyleRareNonInheritedData.h | 121 FillLayer m_mask;
|
D | RenderStyle.h | 577 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()
|
D | StyleRareNonInheritedData.cpp | 55 , m_mask(FillLayer(MaskFillLayer)) in StyleRareNonInheritedData()
|
/external/webkit/Source/WebCore/page/animation/ |
D | AnimationBase.cpp | 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*… 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/ |
D | RenderBoxModelObject.h | 118 …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;
|
D | InlineFlowBox.h | 105 …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…
|
D | RenderBox.h | 412 …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…
|
D | RenderTheme.h | 73 const BorderData&, const FillLayer&, const Color& backgroundColor); 109 …virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color&…
|
D | RenderThemeSafari.h | 66 const FillLayer&, const Color& backgroundColor) const;
|
D | RenderBox.cpp | 799 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()
|
D | RenderObject.cpp | 660 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()
|
D | RenderThemeMac.h | 55 const FillLayer&, const Color& backgroundColor) const;
|
D | RenderTheme.cpp | 72 …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()
|
D | RenderObject.h | 513 void updateFillImages(const FillLayer*, const FillLayer*);
|
/external/webkit/Source/WebCore/platform/wx/ |
D | RenderThemeWx.cpp | 90 const FillLayer&, const Color&) const; 153 … const FillLayer& background, const Color& backgroundColor) const in isControlStyled()
|
/external/webkit/Source/WebCore/platform/qt/ |
D | RenderThemeQt.h | 84 …virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color&…
|
D | RenderThemeQt.cpp | 207 …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/ |
D | DeleteButtonController.cpp | 116 …for (const FillLayer* background = style->backgroundLayers(); background; background = background-… in isDeletableElement()
|