HomeSort by relevance Sort by last modified time
    Searched refs:FillLayer (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
CSSToStyleMap.h 35 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*, CSSValue*) const
    [all...]
CSSToStyleMap.cpp 41 #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* layer, CSSValue* value) cons
    [all...]
StyleResourceLoader.cpp 33 #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()) {
AnimatedStyleBuilder.cpp 129 void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, const StyleResolverState& state)
132 fillLayer->setSize(FillSize(SizeLength, animatableValueToLengthSize(value, state, ValueRangeNonNegative)));
134 state.styleMap().mapFillSize(fillLayer, toAnimatableUnknown(value)->toCSSValue().get());
146 void setOnFillLayers(FillLayer& fillLayers, const AnimatableValue* value, StyleResolverState& state)
150 FillLayer* fillLayer = &fillLayers;
151 FillLayer* prev = 0;
153 if (!fillLayer)
154 fillLayer = prev->ensureNext()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.cpp 23 #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)
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::initialFillAttachment(type)
    [all...]
StyleBackgroundData.h 28 #include "core/rendering/style/FillLayer.h"
50 const FillLayer& background() const { return m_background; }
60 FillLayer m_background;
FillLayer.h 62 class FillLayer {
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(const FillLayer& o)
    [all...]
CachedUAStyle.h 42 FillLayer backgroundLayers;
StyleRareNonInheritedData.h 34 #include "core/rendering/style/FillLayer.h"
127 FillLayer m_mask;
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlineFlowBoxPainter.h 14 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);
BoxPainter.h 26 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);
InlineFlowBoxPainter.cpp 87 void InlineFlowBoxPainter::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect, CompositeOperator op)
91 if (fillLayer.next())
92 paintFillLayers(paintInfo, c, *fillLayer.next(), rect, op);
93 paintFillLayer(paintInfo, c, fillLayer, rect, op);
96 void InlineFlowBoxPainter::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect, CompositeOperator op)
98 StyleImage* img = fillLayer.image();
101 BoxPainter::paintFillLayerExtended(*m_inlineFlowBox.boxModelObject(), paintInfo, c, fillLayer, rect, BackgroundBleedNone, &m_inlineFlowBox, rect.size(), op);
105 BoxPainter::paintFillLayerExtended(*m_inlineFlowBox.boxModelObject(), paintInfo, c, fillLayer, rect, BackgroundBleedNone, &m_inlineFlowBox, rect.size(), op)
    [all...]
BoxPainter.cpp 121 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;
148 if (curLayer->clipOccludesNextLayers(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
    [all...]
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 63 class FillLayer {
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPropertyEquality.cpp 18 bool fillLayersEqual(const FillLayer& aLayers, const FillLayer& bLayers)
20 const FillLayer* aLayer = &aLayers;
21 const FillLayer* bLayer = &bLayers;
CSSAnimatableValueFactory.cpp 187 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromFillLayers(const FillLayer& fillLayers, const RenderStyle& style)
190 for (const FillLayer* fillLayer = &fillLayers; fillLayer; fillLayer = fillLayer->next()) {
192 if (!fillLayer->isImageSet())
194 values.append(createFromStyleImage(fillLayer->image()));
196 if (!fillLayer->isXPositionSet())
198 values.append(createFromBackgroundPosition(fillLayer->xPosition(), fillLayer->isBackgroundXOriginSet(), fillLayer->backgroundXOrigin(), style))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp 438 const FillLayer* lastBackgroundLayer = &style()->backgroundLayers();
439 for (const FillLayer* next = lastBackgroundLayer->next(); next; next = lastBackgroundLayer->next())
RenderObject.cpp 869 bool RenderObject::mustInvalidateFillLayersPaintOnWidthChange(const FillLayer& layer) const
906 bool RenderObject::mustInvalidateFillLayersPaintOnHeightChange(const FillLayer& layer) const
    [all...]
RenderObject.h 564 bool mustInvalidateFillLayersPaintOnWidthChange(const FillLayer&) const;
565 bool mustInvalidateFillLayersPaintOnHeightChange(const FillLayer&) const;
703 void updateFillImages(const FillLayer* oldLayers, const FillLayer& newLayers);
    [all...]
InlineFlowBox.h 121 bool boxShadowCanBeAppliedToBackground(const FillLayer&) const;
RenderTheme.cpp 550 FillLayer backgroundCopy = uaStyle.backgroundLayers;
551 FillLayer backgroundLayersCopy = style.backgroundLayers();
    [all...]
RenderBox.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 587 static PassRefPtrWillBeRawPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer& layer, const RenderStyle& style)
    [all...]
  /external/chromium_org/skia/ext/
platform_canvas_unittest.cc 235 TEST(PlatformCanvas, FillLayer) {

Completed in 769 milliseconds

1 2