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

12

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.h35 class FillLayer;
53 void mapFillAttachment(FillLayer*, CSSValue*) const;
54 void mapFillClip(FillLayer*, CSSValue*) const;
55 void mapFillComposite(FillLayer*, CSSValue*) const;
56 void mapFillBlendMode(FillLayer*, CSSValue*) const;
57 void mapFillOrigin(FillLayer*, CSSValue*) const;
58 void mapFillImage(FillLayer*, CSSValue*);
59 void mapFillRepeatX(FillLayer*, CSSValue*) const;
60 void mapFillRepeatY(FillLayer*, CSSValue*) const;
61 void mapFillSize(FillLayer*, CSSValu
[all...]
H A DCSSToStyleMap.cpp41 #include "core/rendering/style/FillLayer.h"
55 void CSSToStyleMap::mapFillAttachment(FillLayer* layer, CSSValue* value) const
58 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
81 void CSSToStyleMap::mapFillClip(FillLayer* layer, CSSValue* value) const
84 layer->setClip(FillLayer::initialFillClip(layer->type()));
95 void CSSToStyleMap::mapFillComposite(FillLayer* layer, CSSValue* value) const
98 layer->setComposite(FillLayer::initialFillComposite(layer->type()));
109 void CSSToStyleMap::mapFillBlendMode(FillLayer* layer, CSSValue* value) const
112 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type()));
123 void CSSToStyleMap::mapFillOrigin(FillLayer* laye
[all...]
H A DStyleResourceLoader.cpp33 #include "core/rendering/style/FillLayer.h"
128 for (FillLayer* backgroundLayer = &style->accessBackgroundLayers(); backgroundLayer; backgroundLayer = backgroundLayer->next()) {
185 for (FillLayer* maskLayer = &style->accessMaskLayers(); maskLayer; maskLayer = maskLayer->next()) {
H A DAnimatedStyleBuilder.cpp129 void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, const StyleResolverState& state)
146 void setOnFillLayers(FillLayer& fillLayers, const AnimatableValue* value, StyleResolverState& state)
150 FillLayer* fillLayer = &fillLayers;
151 FillLayer* prev = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DFillLayer.cpp23 #include "core/rendering/style/FillLayer.h"
30 FillLayer* m_next;
43 COMPILE_ASSERT(sizeof(FillLayer) == sizeof(SameSizeAsFillLayer), FillLayer_should_stay_small);
45 FillLayer::FillLayer(EFillLayerType type, bool useInitialValues) function in class:blink::FillLayer
47 , m_image(FillLayer::initialFillImage(type))
48 , m_xPosition(FillLayer::initialFillXPosition(type))
49 , m_yPosition(FillLayer::initialFillYPosition(type))
50 , m_sizeLength(FillLayer::initialFillSizeLength(type))
51 , m_attachment(FillLayer
79 FillLayer::FillLayer(const FillLayer& o) function in class:blink::FillLayer
[all...]
H A DStyleBackgroundData.h28 #include "core/rendering/style/FillLayer.h"
50 const FillLayer& background() const { return m_background; }
60 FillLayer m_background;
H A DFillLayer.h62 class FillLayer { class in namespace:blink
65 FillLayer(EFillLayerType, bool useInitialValues = false);
66 ~FillLayer();
85 const FillLayer* next() const { return m_next; }
86 FillLayer* next() { return m_next; }
87 FillLayer* ensureNext()
90 m_next = new FillLayer(type());
148 FillLayer& operator=(const FillLayer& o);
149 FillLayer(cons
203 FillLayer() { } function in class:blink::FillLayer
[all...]
H A DCachedUAStyle.h42 FillLayer backgroundLayers;
H A DStyleRareNonInheritedData.h34 #include "core/rendering/style/FillLayer.h"
127 FillLayer m_mask;
H A DRenderStyle.cpp1008 static bool allLayersAreFixed(const FillLayer& layer)
1010 for (const FillLayer* currLayer = &layer; currLayer; currLayer = currLayer->next()) {
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlineFlowBoxPainter.h14 class FillLayer;
30 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, CompositeOperator = CompositeSourceOver);
31 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, CompositeOperator);
H A DBoxPainter.h26 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, BackgroundBleedAvoidance = BackgroundBleedNone, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
29 static void paintFillLayerExtended(RenderBoxModelObject&, const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0, bool skipBaseColor = false);
30 static void calculateBackgroundImageGeometry(RenderBoxModelObject&, const RenderLayerModelObject* paintContainer, const FillLayer&, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0);
41 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, BackgroundBleedAvoidance, CompositeOperator, RenderObject* backgroundObject, bool skipBaseColor = false);
49 static IntSize calculateFillTileSize(const RenderBoxModelObject&, const FillLayer&, const IntSize& scaledPositioningAreaSize);
H A DInlineFlowBoxPainter.cpp87 void InlineFlowBoxPainter::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect, CompositeOperator op)
96 void InlineFlowBoxPainter::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect, CompositeOperator op)
H A DBoxPainter.cpp121 const FillLayer& bgLayer = rootBackgroundRenderer->style()->backgroundLayers();
127 void BoxPainter::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect,
130 Vector<const FillLayer*, 8> layers;
131 const FillLayer* curLayer = &fillLayer;
178 Vector<const FillLayer*>::const_reverse_iterator topLayer = layers.rend();
179 for (Vector<const FillLayer*>::const_reverse_iterator it = layers.rbegin(); it != topLayer; ++it)
186 void BoxPainter::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect,
274 void BoxPainter::paintFillLayerExtended(RenderBoxModelObject& obj, const PaintInfo& paintInfo, const Color& color, const FillLayer& bgLayer, const LayoutRect& rect,
514 const FillLayer& maskLayers = m_renderBox.style()->maskLayers();
622 void BoxPainter::calculateBackgroundImageGeometry(RenderBoxModelObject& obj, const RenderLayerModelObject* paintContainer, const FillLayer
[all...]
/external/clang/test/SemaCXX/
H A Dinvalid-member-expr.cpp63 class FillLayer { class in namespace:rdar11293995
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSPropertyEquality.cpp18 bool fillLayersEqual(const FillLayer& aLayers, const FillLayer& bLayers)
20 const FillLayer* aLayer = &aLayers;
21 const FillLayer* bLayer = &bLayers;
H A DCSSAnimatableValueFactory.cpp187 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromFillLayers(const FillLayer& fillLayers, const RenderStyle& style)
190 for (const FillLayer* fillLayer = &fillLayers; fillLayer; fillLayer = fillLayer->next()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp438 const FillLayer* lastBackgroundLayer = &style()->backgroundLayers();
439 for (const FillLayer* next = lastBackgroundLayer->next(); next; next = lastBackgroundLayer->next())
H A DRenderObject.cpp869 bool RenderObject::mustInvalidateFillLayersPaintOnWidthChange(const FillLayer& layer) const
906 bool RenderObject::mustInvalidateFillLayersPaintOnHeightChange(const FillLayer& layer) const
1937 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer& newLayers)
1944 for (const FillLayer* currNew = &newLayers; currNew; currNew = currNew->next()) {
1949 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) {
2519 for (const FillLayer* bgLayer = &m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) {
2524 for (const FillLayer* maskLayer = &m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next()) {
H A DRenderObject.h564 bool mustInvalidateFillLayersPaintOnWidthChange(const FillLayer&) const;
565 bool mustInvalidateFillLayersPaintOnHeightChange(const FillLayer&) const;
703 void updateFillImages(const FillLayer* oldLayers, const FillLayer& newLayers);
H A DInlineFlowBox.h121 bool boxShadowCanBeAppliedToBackground(const FillLayer&) const;
H A DRenderTheme.cpp550 FillLayer backgroundCopy = uaStyle.backgroundLayers;
551 FillLayer backgroundLayersCopy = style.backgroundLayers();
H A DRenderBox.h673 bool paintInvalidationLayerRectsForImage(WrappedImagePtr, const FillLayer&, bool drawingBackground);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp587 static PassRefPtrWillBeRawPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer& layer, const RenderStyle& style)
1614 const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskImage ? &style->maskLayers() : &style->backgroundLayers();
1627 const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskSize ? &style->maskLayers() : &style->backgroundLayers();
1635 const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskRepeat ? &style->maskLayers() : &style->backgroundLayers();
1642 for (const FillLayer* currLayer = &style->maskLayers(); currLayer; currLayer = currLayer->next())
1649 const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskComposite ? &style->maskLayers() : &style->backgroundLayers();
1656 for (const FillLayer* currLayer = &style->backgroundLayers(); currLayer; currLayer = currLayer->next())
1668 const FillLayer* currLayer = (propertyID == CSSPropertyWebkitMaskClip || propertyID == CSSPropertyWebkitMaskOrigin) ? &style->maskLayers() : &style->backgroundLayers();
1678 const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskPosition ? &style->maskLayers() : &style->backgroundLayers();
1686 const FillLayer* currLaye
[all...]
/external/chromium_org/skia/ext/
H A Dplatform_canvas_unittest.cc235 TEST(PlatformCanvas, FillLayer) {

Completed in 2000 milliseconds

12