/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | FillLayer.cpp | 28 FillLayer* m_next; 41 COMPILE_ASSERT(sizeof(FillLayer) == sizeof(SameSizeAsFillLayer), FillLayer_should_stay_small); 43 FillLayer::FillLayer(EFillLayerType type, bool useInitialValues) in FillLayer() function in WebCore::FillLayer 45 , m_image(FillLayer::initialFillImage(type)) in FillLayer() 46 , m_xPosition(FillLayer::initialFillXPosition(type)) in FillLayer() 47 , m_yPosition(FillLayer::initialFillYPosition(type)) in FillLayer() 48 , m_sizeLength(FillLayer::initialFillSizeLength(type)) in FillLayer() 49 , m_attachment(FillLayer::initialFillAttachment(type)) in FillLayer() 50 , m_clip(FillLayer::initialFillClip(type)) in FillLayer() 51 , m_origin(FillLayer::initialFillOrigin(type)) in FillLayer() [all …]
|
D | FillLayer.h | 62 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() 142 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } } in setNext() 144 FillLayer& operator=(const FillLayer& o); 145 FillLayer(const FillLayer& o); 147 bool operator==(const FillLayer& o) const; 148 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 | CachedUAStyle.h | 56 FillLayer backgroundLayers;
|
D | StyleRareNonInheritedData.h | 125 FillLayer m_mask;
|
D | RenderStyle.h | 643 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); } in accessBackgroundLayers() 644 const FillLayer* backgroundLayers() const { return &(m_background->background()); } in backgroundLayers() 656 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); } in accessMaskLayers() 657 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); } in maskLayers() 1100 …void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer… in clearBackgroundLayers() 1101 …void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = pare… in inheritBackgroundLayers() 1111 void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); } in clearMaskLayers() 1112 …void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; } in inheritMaskLayers()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | CSSToStyleMap.h | 31 class FillLayer; variable 50 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const; 51 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const; 52 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const; 53 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const; 54 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const; 55 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*); 56 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const; 57 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const; 58 void mapFillSize(CSSPropertyID, FillLayer*, CSSValue*) const; [all …]
|
D | CSSToStyleMap.cpp | 60 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const in mapFillAttachment() 63 layer->setAttachment(FillLayer::initialFillAttachment(layer->type())); in mapFillAttachment() 86 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const in mapFillClip() 89 layer->setClip(FillLayer::initialFillClip(layer->type())); in mapFillClip() 100 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) const in mapFillComposite() 103 layer->setComposite(FillLayer::initialFillComposite(layer->type())); in mapFillComposite() 114 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) const in mapFillBlendMode() 117 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type())); in mapFillBlendMode() 128 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) const in mapFillOrigin() 131 layer->setOrigin(FillLayer::initialFillOrigin(layer->type())); in mapFillOrigin() [all …]
|
D | AnimatedStyleBuilder.cpp | 129 void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, const StyleResolverState& stat… in setFillSize() 146 void setOnFillLayers(FillLayer* fillLayer, const AnimatableValue* value, StyleResolverState& state) in setOnFillLayers() 150 FillLayer* prev = 0; in setOnFillLayers() 159 fillLayer = new FillLayer(BackgroundFillLayer); in setOnFillLayers() 165 fillLayer = new FillLayer(MaskFillLayer); in setOnFillLayers()
|
D | StyleResourceLoader.cpp | 135 …for (FillLayer* backgroundLayer = style->accessBackgroundLayers(); backgroundLayer; backgroundLaye… in loadPendingImages() 192 … for (FillLayer* maskLayer = style->accessMaskLayers(); maskLayer; maskLayer = maskLayer->next()) { in loadPendingImages()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
D | CSSPropertyAnimation.cpp | 607 virtual bool equals(const FillLayer*, const FillLayer*) const = 0; 608 …virtual void blend(const AnimationBase*, FillLayer*, const FillLayer*, const FillLayer*, double) c… 615 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const) in FillLayerPropertyWrapperGetter() 620 virtual bool equals(const FillLayer* a, const FillLayer* b) const in equals() 632 T (FillLayer::*m_getter)() const; 638 FillLayerPropertyWrapper(T (FillLayer::*getter)() const, void (FillLayer::*setter)(T)) in FillLayerPropertyWrapper() 644 …virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer*… in blend() 650 void (FillLayer::*m_setter)(T); 656 …FillLayerRefCountedPropertyWrapper(T* (FillLayer::*getter)() const, void (FillLayer::*setter)(Pass… in FillLayerRefCountedPropertyWrapper() 662 …virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer*… in blend() [all …]
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StyleBuilderFunctions.cpp.tmpl | 353 {%- set fill_layer_type = layer_type + "FillLayer" %} 358 FillLayer* currChild = state.style()->{{access_layers}}(); 359 currChild->set{{fill_type}}(FillLayer::initialFill{{fill_type}}({{fill_layer_type}})); 366 FillLayer* currChild = state.style()->{{access_layers}}(); 367 FillLayer* prevChild = 0; 368 const FillLayer* currParent = state.parentStyle()->{{layer_type|lower}}Layers(); 372 currChild = new FillLayer({{fill_layer_type}}); 390 FillLayer* currChild = state.style()->{{access_layers}}(); 391 FillLayer* prevChild = 0; 398 currChild = new FillLayer({{fill_layer_type}});
|
/external/clang/test/SemaCXX/ |
D | invalid-member-expr.cpp | 63 class FillLayer { class
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | InlineFlowBox.h | 114 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, Composit… 115 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, Composite… 120 bool boxShadowCanBeAppliedToBackground(const FillLayer&) const;
|
D | RenderBoxModelObject.h | 168 …void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, B… 257 …void calculateBackgroundImageGeometry(const FillLayer*, const LayoutRect& paintRect, BackgroundIma… 312 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const;
|
D | RenderBox.h | 622 …void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, Backgroun… 623 …void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, Backgrou… 656 …bool repaintLayerRectsForImage(WrappedImagePtr image, const FillLayer* layers, bool drawingBackgro…
|
D | RenderBox.cpp | 1219 const FillLayer* bgLayer = rootBackgroundRenderer->style()->backgroundLayers(); in paintRootBoxFillLayers() 1459 const FillLayer* fillLayer = style()->backgroundLayers(); in backgroundHasOpaqueTopLayer() 1518 const FillLayer* maskLayers = style()->maskLayers(); in paintMaskImages() 1554 …for (const FillLayer* maskLayer = style()->maskLayers(); maskLayer; maskLayer = maskLayer->next())… in maskClipRect() 1564 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLa… in paintFillLayers() 1567 Vector<const FillLayer*, 8> layers; in paintFillLayers() 1568 const FillLayer* curLayer = fillLayer; in paintFillLayers() 1595 Vector<const FillLayer*>::const_reverse_iterator topLayer = layers.rend(); in paintFillLayers() 1596 … for (Vector<const FillLayer*>::const_reverse_iterator it = layers.rbegin(); it != topLayer; ++it) in paintFillLayers() 1603 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLay… in paintFillLayer() [all …]
|
D | RenderObject.cpp | 843 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer) in mustRepaintFillLayers() 2141 void RenderObject::updateFillImages(const FillLayer* oldLayers, const FillLayer* newLayers) in updateFillImages() 2148 for (const FillLayer* currNew = newLayers; currNew; currNew = currNew->next()) { in updateFillImages() 2153 for (const FillLayer* currOld = oldLayers; currOld; currOld = currOld->next()) { in updateFillImages() 2733 … for (const FillLayer* bgLayer = m_style->backgroundLayers(); bgLayer; bgLayer = bgLayer->next()) { in postDestroy() 2738 …for (const FillLayer* maskLayer = m_style->maskLayers(); maskLayer; maskLayer = maskLayer->next())… in postDestroy()
|
D | RenderTheme.cpp | 628 FillLayer backgroundCopy = uaStyle.backgroundLayers; in isBackgroundOrBorderStyled() 629 FillLayer backgroundLayersCopy = *style.backgroundLayers(); in isBackgroundOrBorderStyled()
|
D | RenderObject.h | 662 void updateFillImages(const FillLayer*, const FillLayer*);
|
D | InlineFlowBox.cpp | 1136 void InlineFlowBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fi… in paintFillLayers() 1144 bool InlineFlowBox::boxShadowCanBeAppliedToBackground(const FillLayer& lastBackgroundLayer) const in boxShadowCanBeAppliedToBackground() 1153 void InlineFlowBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fil… in paintFillLayer()
|
D | RenderBoxModelObject.cpp | 519 …FillLayerExtended(const PaintInfo& paintInfo, const Color& color, const FillLayer* bgLayer, const … in paintFillLayerExtended() 876 IntSize RenderBoxModelObject::calculateFillTileSize(const FillLayer* fillLayer, const IntSize& posi… in calculateFillTileSize() 999 void RenderBoxModelObject::calculateBackgroundImageGeometry(const FillLayer* fillLayer, const Layou… in calculateBackgroundImageGeometry() 2452 const FillLayer* lastBackgroundLayer = style()->backgroundLayers(); in boxShadowShouldBeAppliedToBackground() 2453 …for (const FillLayer* next = lastBackgroundLayer->next(); next; next = lastBackgroundLayer->next()) in boxShadowShouldBeAppliedToBackground()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSComputedStyleDeclaration.cpp | 602 …SSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const Re… in createPositionListForLayer() 1694 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskImage ? style->maskLayers() : style->… in getPropertyCSSValue() 1706 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) { in getPropertyCSSValue() 1717 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskSize ? style->maskLayers() : style->b… in getPropertyCSSValue() 1722 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue() 1729 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskRepeat ? style->maskLayers() : style-… in getPropertyCSSValue() 1734 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue() 1740 const FillLayer* layers = style->maskLayers(); in getPropertyCSSValue() 1749 for (const FillLayer* currLayer = layers; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue() 1756 …const FillLayer* layers = propertyID == CSSPropertyWebkitMaskComposite ? style->maskLayers() : sty… in getPropertyCSSValue() [all …]
|
/external/chromium_org/skia/ext/ |
D | platform_canvas_unittest.cc | 238 TEST(PlatformCanvas, FillLayer) { in TEST() argument
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
D | CSSAnimatableValueFactory.cpp | 185 inline static PassRefPtr<AnimatableValue> createFromFillLayers(const FillLayer* fillLayer, const Re… in createFromFillLayers()
|