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

12

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSToStyleMap.h32 class FillLayer;
49 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
50 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
51 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
52 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
53 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
55 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const;
57 void mapFillSize(CSSPropertyID, FillLayer*, CSSValu
[all...]
H A DCSSToStyleMap.cpp40 #include "core/rendering/style/FillLayer.h"
64 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const
67 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
90 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const
93 layer->setClip(FillLayer::initialFillClip(layer->type()));
104 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) const
107 layer->setComposite(FillLayer::initialFillComposite(layer->type()));
118 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) const
121 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type()));
132 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* laye
[all...]
H A DCSSComputedStyleDeclaration.cpp590 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style)
1624 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->backgroundLayers();
1636 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) {
1647 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->backgroundLayers();
1652 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1659 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style->backgroundLayers();
1664 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1671 const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : style->backgroundLayers();
1676 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next())
1682 const FillLayer* layer
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DFillLayer.cpp23 #include "core/rendering/style/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 DStyleBackgroundData.h29 #include "core/rendering/style/FillLayer.h"
48 const FillLayer& background() const { return m_background; }
58 FillLayer m_background;
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 DCachedUAStyle.h56 FillLayer backgroundLayers;
H A DStyleRareNonInheritedData.h34 #include "core/rendering/style/FillLayer.h"
122 FillLayer m_mask;
H A DStyleRareNonInheritedData.cpp42 , m_mask(FillLayer(MaskFillLayer))
H A DRenderStyle.h625 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
626 const FillLayer* backgroundLayers() const { return &(m_background->background()); }
638 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
639 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); }
1066 void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer); }
1067 void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = parent; }
1077 void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); }
1078 void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; }
H A DRenderStyle.cpp972 static bool allLayersAreFixed(const FillLayer* layer)
976 for (const FillLayer* currLayer = layer; currLayer; currLayer = currLayer->next())
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp63 class FillLayer { class in namespace:rdar11293995
/external/chromium_org/third_party/WebKit/Source/core/page/animation/
H A DCSSPropertyAnimation.cpp734 // Wrapper base class for an animatable property in a FillLayer
743 virtual bool equals(const FillLayer*, const FillLayer*) const = 0;
744 virtual void blend(const AnimationBase*, FillLayer*, const FillLayer*, const FillLayer*, double) const = 0;
751 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const)
756 virtual bool equals(const FillLayer* a, const FillLayer* b) const
768 T (FillLayer
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResourceLoader.cpp36 #include "core/rendering/style/FillLayer.h"
134 for (FillLayer* backgroundLayer = style->accessBackgroundLayers(); backgroundLayer; backgroundLayer = backgroundLayer->next()) {
191 for (FillLayer* maskLayer = style->accessMaskLayers(); maskLayer; maskLayer = maskLayer->next()) {
/external/chromium_org/third_party/WebKit/Source/core/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.h163 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
245 void calculateBackgroundImageGeometry(const FillLayer*, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0);
300 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const;
H A DRenderBox.h605 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, CompositeOperator, RenderObject* backgroundObject);
606 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance = BackgroundBleedNone, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
638 bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackground);
H A DRenderBox.cpp1093 const FillLayer* bgLayer = rootBackgroundRenderer->style()->backgroundLayers();
1321 const FillLayer* fillLayer = style()->backgroundLayers();
1364 const FillLayer* maskLayers = style()->maskLayers();
1400 for (const FillLayer* maskLayer = style()->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
1410 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, const LayoutRect& rect,
1413 Vector<const FillLayer*, 8> layers;
1414 const FillLayer* curLayer = fillLayer;
1441 Vector<const FillLayer*>::const_reverse_iterator topLayer = layers.rend();
1442 for (Vector<const FillLayer*>::const_reverse_iterator it = layers.rbegin(); it != topLayer; ++it)
1449 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLaye
[all...]
H A DRenderObject.cpp838 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer)
2080 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer* newLayers)
2087 for (const FillLayer* currNew = newLayers; currNew; currNew = currNew->next()) {
2092 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) {
2674 for (const FillLayer* bgLayer = m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) {
2679 for (const FillLayer* maskLayer = m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
H A DRenderObject.h664 void updateFillImages(const FillLayer*, const FillLayer*);
H A DRenderTheme.cpp683 FillLayer backgroundCopy = uaStyle.backgroundLayers;
684 FillLayer backgroundLayersCopy = *style.backgroundLayers();
H A DRenderBoxModelObject.cpp523 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& color, const FillLayer* bgLayer, const LayoutRect& rect,
878 IntSize RenderBoxModelObject::calculateFillTileSize(const FillLayer* fillLayer, const IntSize& positioningAreaSize) const
990 void RenderBoxModelObject::calculateBackgroundImageGeometry(const FillLayer* fillLayer, const LayoutRect& paintRect,
2380 const FillLayer* lastBackgroundLayer = style()->backgroundLayers();
2381 for (const FillLayer* next = lastBackgroundLayer->next(); next; next = lastBackgroundLayer->next())
H A DInlineFlowBox.cpp1137 void InlineFlowBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, const LayoutRect& rect, CompositeOperator op)
1145 bool InlineFlowBox::boxShadowCanBeAppliedToBackground(const FillLayer& lastBackgroundLayer) const
1154 void InlineFlowBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, const LayoutRect& rect, CompositeOperator op)
/external/chromium_org/skia/ext/
H A Dplatform_canvas_unittest.cc241 TEST(PlatformCanvas, FillLayer) {
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_rendering.target.darwin-arm.mk149 third_party/WebKit/Source/core/rendering/style/FillLayer.cpp \

Completed in 522 milliseconds

12