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

12

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSToStyleMap.h30 class FillLayer;
45 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*);
46 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*);
47 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*);
48 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*);
49 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*);
50 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
51 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*);
52 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*);
53 void mapFillSize(CSSPropertyID, FillLayer*, CSSValu
[all...]
H A DDeprecatedStyleBuilder.cpp496 FillLayer* (RenderStyle::*accessLayersFunction)(),
497 const FillLayer* (RenderStyle::*layersFunction)() const,
498 bool (FillLayer::*testFunction)() const,
499 typename FillLayerAccessorTypes<T>::Getter (FillLayer::*getFunction)() const,
500 void (FillLayer::*setFunction)(typename FillLayerAccessorTypes<T>::Setter),
501 void (FillLayer::*clearFunction)(),
503 void (CSSToStyleMap::*mapFillFunction)(CSSPropertyID, FillLayer*, CSSValue*)>
508 FillLayer* currChild = (styleResolver->style()->*accessLayersFunction)();
509 FillLayer* prevChild = 0;
510 const FillLayer* currParen
[all...]
H A DCSSToStyleMap.cpp37 #include "FillLayer.h"
64 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value)
67 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
90 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value)
93 layer->setClip(FillLayer::initialFillClip(layer->type()));
104 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value)
107 layer->setComposite(FillLayer::initialFillComposite(layer->type()));
118 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value)
121 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type()));
132 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* laye
[all...]
H A DCSSComputedStyleDeclaration.cpp637 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style)
1629 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->backgroundLayers();
1641 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) {
1652 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->backgroundLayers();
1657 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1664 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style->backgroundLayers();
1669 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1676 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : style->backgroundLayers();
1681 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1687 const FillLayer* layer
[all...]
H A DStyleResolver.h490 FillLayer backgroundData() const { return m_backgroundData; }
538 FillLayer m_backgroundData;
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DFillLayer.cpp23 #include "FillLayer.h"
28 FillLayer* m_next;
41 COMPILE_ASSERT(sizeof(FillLayer) == sizeof(SameSizeAsFillLayer), FillLayer_should_stay_small);
43 FillLayer::FillLayer(EFillLayerType type) function in class:WebCore::FillLayer
45 , m_image(FillLayer::initialFillImage(type))
46 , m_xPosition(FillLayer::initialFillXPosition(type))
47 , m_yPosition(FillLayer::initialFillYPosition(type))
48 , m_sizeLength(FillLayer::initialFillSizeLength(type))
49 , m_attachment(FillLayer
74 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();
84 const FillLayer* next() const { return m_next; }
85 FillLayer* next() { return m_next; }
137 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
139 FillLayer& operator=(const FillLayer& o);
140 FillLayer(const FillLayer
193 FillLayer() { } function in class:WebCore::FillLayer
[all...]
H A DStyleBackgroundData.h29 #include "FillLayer.h"
50 const FillLayer& background() const { return m_background; }
60 FillLayer m_background;
H A DStyleRareNonInheritedData.h33 #include "FillLayer.h"
134 FillLayer m_mask;
H A DStyleRareNonInheritedData.cpp47 , m_mask(FillLayer(MaskFillLayer))
H A DRenderStyle.h672 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
673 const FillLayer* backgroundLayers() const { return &(m_background->background()); }
685 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
686 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); }
1184 void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer); }
1185 void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = parent; }
1195 void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); }
1196 void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; }
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCSSPropertyAnimation.cpp726 // Wrapper base class for an animatable property in a FillLayer
735 virtual bool equals(const FillLayer*, const FillLayer*) const = 0;
736 virtual void blend(const AnimationBase*, FillLayer*, const FillLayer*, const FillLayer*, double) const = 0;
743 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const)
748 virtual bool equals(const FillLayer* a, const FillLayer* b) const
760 T (FillLayer
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DInlineFlowBox.h114 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, CompositeOperator = CompositeSourceOver);
115 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, CompositeOperator = CompositeSourceOver);
120 bool boxShadowCanBeAppliedToBackground(const FillLayer&) const;
H A DRenderBoxModelObject.h164 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
254 void calculateBackgroundImageGeometry(const RenderLayerModelObject* paintContainer, const FillLayer*, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0) const;
309 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const;
H A DRenderTheme.h76 const BorderData&, const FillLayer&, const Color& backgroundColor);
113 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
H A DRenderThemeSafari.h66 const FillLayer&, const Color& backgroundColor) const;
H A DRenderThemeMac.h49 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
H A DRenderBox.h599 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, CompositeOperator, RenderObject* backgroundObject);
600 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance = BackgroundBleedNone, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
636 bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackground);
H A DRenderBox.cpp1049 const FillLayer* bgLayer = rootBackgroundRenderer->style()->backgroundLayers();
1286 const FillLayer* fillLayer = style()->backgroundLayers();
1329 const FillLayer* maskLayers = style()->maskLayers();
1365 for (const FillLayer* maskLayer = style()->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
1376 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, const LayoutRect& rect,
1379 Vector<const FillLayer*, 8> layers;
1380 const FillLayer* curLayer = fillLayer;
1407 Vector<const FillLayer*>::const_reverse_iterator topLayer = layers.rend();
1408 for (Vector<const FillLayer*>::const_reverse_iterator it = layers.rbegin(); it != topLayer; ++it)
1415 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLaye
[all...]
H A DRenderTheme.cpp84 void RenderTheme::adjustStyle(StyleResolver* styleResolver, RenderStyle* style, Element* e, bool UAHasAppearance, const BorderData& border, const FillLayer& background, const Color& backgroundColor)
657 bool RenderTheme::isControlStyled(const RenderStyle* style, const BorderData& border, const FillLayer& background, const Color& backgroundColor) const
H A DRenderObject.cpp808 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer)
2064 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer* newLayers)
2071 for (const FillLayer* currNew = newLayers; currNew; currNew = currNew->next()) {
2076 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) {
2613 for (const FillLayer* bgLayer = m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) {
2618 for (const FillLayer* maskLayer = m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
H A DRenderObject.h705 void updateFillImages(const FillLayer*, const FillLayer*);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQtMobile.h50 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color& backgroundColor) const;
H A DRenderThemeQt.h93 virtual bool isControlStyled(const RenderStyle*, const BorderData&, const FillLayer&, const Color&) const;
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DDeleteButtonController.cpp121 for (const FillLayer* background = style->backgroundLayers(); background; background = background->next()) {

Completed in 379 milliseconds

12