Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DFillLayer.cpp30 FillLayer* m_next;
43 COMPILE_ASSERT(sizeof(FillLayer) == sizeof(SameSizeAsFillLayer), FillLayer_should_stay_small);
45 FillLayer::FillLayer(EFillLayerType type, bool useInitialValues) in FillLayer() function in blink::FillLayer
47 , m_image(FillLayer::initialFillImage(type)) in FillLayer()
48 , m_xPosition(FillLayer::initialFillXPosition(type)) in FillLayer()
49 , m_yPosition(FillLayer::initialFillYPosition(type)) in FillLayer()
50 , m_sizeLength(FillLayer::initialFillSizeLength(type)) in FillLayer()
51 , m_attachment(FillLayer::initialFillAttachment(type)) in FillLayer()
52 , m_clip(FillLayer::initialFillClip(type)) in FillLayer()
53 , m_origin(FillLayer::initialFillOrigin(type)) in FillLayer()
[all …]
DFillLayer.h62 class FillLayer {
65 FillLayer(EFillLayerType, bool useInitialValues = false);
66 ~FillLayer();
85 const FillLayer* next() const { return m_next; } in next()
86 FillLayer* next() { return m_next; } in next()
87 FillLayer* ensureNext() in ensureNext()
90 m_next = new FillLayer(type()); in ensureNext()
148 FillLayer& operator=(const FillLayer& o);
149 FillLayer(const FillLayer& o);
151 bool operator==(const FillLayer& o) const;
[all …]
DStyleBackgroundData.h50 const FillLayer& background() const { return m_background; } in background()
60 FillLayer m_background;
DCachedUAStyle.h42 FillLayer backgroundLayers;
DStyleRareNonInheritedData.h127 FillLayer m_mask;
DRenderStyle.h653 FillLayer& accessBackgroundLayers() { return m_background.access()->m_background; } in accessBackgroundLayers()
654 const FillLayer& backgroundLayers() const { return m_background->background(); } in backgroundLayers()
666 FillLayer& accessMaskLayers() { return rareNonInheritedData.access()->m_mask; } in accessMaskLayers()
667 const FillLayer& maskLayers() const { return rareNonInheritedData->m_mask; } in maskLayers()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DCSSToStyleMap.h35 class FillLayer; variable
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*, CSSValue*) const;
[all …]
DCSSToStyleMap.cpp55 void CSSToStyleMap::mapFillAttachment(FillLayer* layer, CSSValue* value) const in mapFillAttachment()
58 layer->setAttachment(FillLayer::initialFillAttachment(layer->type())); in mapFillAttachment()
81 void CSSToStyleMap::mapFillClip(FillLayer* layer, CSSValue* value) const in mapFillClip()
84 layer->setClip(FillLayer::initialFillClip(layer->type())); in mapFillClip()
95 void CSSToStyleMap::mapFillComposite(FillLayer* layer, CSSValue* value) const in mapFillComposite()
98 layer->setComposite(FillLayer::initialFillComposite(layer->type())); in mapFillComposite()
109 void CSSToStyleMap::mapFillBlendMode(FillLayer* layer, CSSValue* value) const in mapFillBlendMode()
112 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type())); in mapFillBlendMode()
123 void CSSToStyleMap::mapFillOrigin(FillLayer* layer, CSSValue* value) const in mapFillOrigin()
126 layer->setOrigin(FillLayer::initialFillOrigin(layer->type())); in mapFillOrigin()
[all …]
DStyleResourceLoader.cpp128 …for (FillLayer* backgroundLayer = &style->accessBackgroundLayers(); backgroundLayer; backgroundLay… in loadPendingImages()
185 …for (FillLayer* maskLayer = &style->accessMaskLayers(); maskLayer; maskLayer = maskLayer->next()) { in loadPendingImages()
DAnimatedStyleBuilder.cpp129 void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, const StyleResolverState& stat… in setFillSize()
146 void setOnFillLayers(FillLayer& fillLayers, const AnimatableValue* value, StyleResolverState& state) in setOnFillLayers()
150 FillLayer* fillLayer = &fillLayers; in setOnFillLayers()
151 FillLayer* prev = 0; in setOnFillLayers()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DInlineFlowBoxPainter.h14 class FillLayer; variable
30 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, Composit…
31 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, Composite…
DBoxPainter.h26 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, Backgrou…
29 …erExtended(RenderBoxModelObject&, const PaintInfo&, const Color&, const FillLayer&, const LayoutRe…
30 …derBoxModelObject&, const RenderLayerModelObject* paintContainer, const FillLayer&, const LayoutRe…
41 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer&, const LayoutRect&, Backgroun…
49 …static IntSize calculateFillTileSize(const RenderBoxModelObject&, const FillLayer&, const IntSize&…
DBoxPainter.cpp121 const FillLayer& bgLayer = rootBackgroundRenderer->style()->backgroundLayers(); in paintRootBoxFillLayers()
127 void BoxPainter::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillL… in paintFillLayers()
130 Vector<const FillLayer*, 8> layers; in paintFillLayers()
131 const FillLayer* curLayer = &fillLayer; in paintFillLayers()
178 Vector<const FillLayer*>::const_reverse_iterator topLayer = layers.rend(); in paintFillLayers()
179 … for (Vector<const FillLayer*>::const_reverse_iterator it = layers.rbegin(); it != topLayer; ++it) in paintFillLayers()
186 void BoxPainter::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLa… in paintFillLayer()
274 …ModelObject& obj, const PaintInfo& paintInfo, const Color& color, const FillLayer& bgLayer, const … in paintFillLayerExtended()
514 const FillLayer& maskLayers = m_renderBox.style()->maskLayers(); in paintMaskImages()
622 …oxModelObject& obj, const RenderLayerModelObject* paintContainer, const FillLayer& fillLayer, cons… in calculateBackgroundImageGeometry()
[all …]
DInlineFlowBoxPainter.cpp87 …nter::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, cons… in paintFillLayers()
96 …inter::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, cons… in paintFillLayer()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSPropertyEquality.cpp18 bool fillLayersEqual(const FillLayer& aLayers, const FillLayer& bLayers) in fillLayersEqual()
20 const FillLayer* aLayer = &aLayers; in fillLayersEqual()
21 const FillLayer* bLayer = &bLayers; in fillLayersEqual()
DCSSAnimatableValueFactory.cpp187 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromFillLayers(const FillLayer& fillLay… in createFromFillLayers()
190 for (const FillLayer* fillLayer = &fillLayers; fillLayer; fillLayer = fillLayer->next()) { in createFromFillLayers()
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStyleBuilderFunctions.cpp.tmpl384 {% set fill_layer_type = layer_type + 'FillLayer' %}
389 FillLayer* currChild = &state.style()->{{access_layers}}();
390 currChild->set{{fill_type}}(FillLayer::initialFill{{fill_type}}({{fill_layer_type}}));
397 FillLayer* currChild = &state.style()->{{access_layers}}();
398 FillLayer* prevChild = 0;
399 const FillLayer* currParent = &state.parentStyle()->{{layer_type|lower}}Layers();
418 FillLayer* currChild = &state.style()->{{access_layers}}();
419 FillLayer* prevChild = 0;
/external/clang/test/SemaCXX/
Dinvalid-member-expr.cpp63 class FillLayer { class
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp587 …SSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer& layer, const Re… in createPositionListForLayer()
1614 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskImage ? &style->maskLayers() : &st… in getPropertyCSSValue()
1627 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskSize ? &style->maskLayers() : &sty… in getPropertyCSSValue()
1635 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskRepeat ? &style->maskLayers() : &s… in getPropertyCSSValue()
1642 … for (const FillLayer* currLayer = &style->maskLayers(); currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
1649 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskComposite ? &style->maskLayers() :… in getPropertyCSSValue()
1656 …for (const FillLayer* currLayer = &style->backgroundLayers(); currLayer; currLayer = currLayer->ne… in getPropertyCSSValue()
1668 …const FillLayer* currLayer = (propertyID == CSSPropertyWebkitMaskClip || propertyID == CSSProperty… in getPropertyCSSValue()
1678 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskPosition ? &style->maskLayers() : … in getPropertyCSSValue()
1686 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskPositionX ? &style->maskLayers() :… in getPropertyCSSValue()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp869 bool RenderObject::mustInvalidateFillLayersPaintOnWidthChange(const FillLayer& layer) const in mustInvalidateFillLayersPaintOnWidthChange()
906 bool RenderObject::mustInvalidateFillLayersPaintOnHeightChange(const FillLayer& layer) const in mustInvalidateFillLayersPaintOnHeightChange()
1937 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer& newLayers) in updateFillImages()
1944 for (const FillLayer* currNew = &newLayers; currNew; currNew = currNew->next()) { in updateFillImages()
1949 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) { in updateFillImages()
2519 …for (const FillLayer* bgLayer = &m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) { in postDestroy()
2524 …for (const FillLayer* maskLayer = &m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next()… in postDestroy()
DRenderBoxModelObject.cpp438 const FillLayer* lastBackgroundLayer = &style()->backgroundLayers(); in boxShadowShouldBeAppliedToBackground()
439 …for (const FillLayer* next = lastBackgroundLayer->next(); next; next = lastBackgroundLayer->next()) in boxShadowShouldBeAppliedToBackground()
DRenderObject.h564 bool mustInvalidateFillLayersPaintOnWidthChange(const FillLayer&) const;
565 bool mustInvalidateFillLayersPaintOnHeightChange(const FillLayer&) const;
703 void updateFillImages(const FillLayer* oldLayers, const FillLayer& newLayers);
DInlineFlowBox.h121 bool boxShadowCanBeAppliedToBackground(const FillLayer&) const;
DRenderTheme.cpp550 FillLayer backgroundCopy = uaStyle.backgroundLayers; in isBackgroundOrBorderStyled()
551 FillLayer backgroundLayersCopy = style.backgroundLayers(); in isBackgroundOrBorderStyled()
/external/chromium_org/skia/ext/
Dplatform_canvas_unittest.cc235 TEST(PlatformCanvas, FillLayer) { in TEST() argument

12