/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
CSSToStyleMap.h | 31 class FillLayer; 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...] |
CSSToStyleMap.cpp | 41 #include "core/rendering/style/FillLayer.h" 60 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const 63 layer->setAttachment(FillLayer::initialFillAttachment(layer->type())); 86 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const 89 layer->setClip(FillLayer::initialFillClip(layer->type())); 100 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) const 103 layer->setComposite(FillLayer::initialFillComposite(layer->type())); 114 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) const 117 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type())); 128 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) cons [all...] |
StyleResourceLoader.cpp | 35 #include "core/rendering/style/FillLayer.h" 135 for (FillLayer* backgroundLayer = style->accessBackgroundLayers(); backgroundLayer; backgroundLayer = backgroundLayer->next()) { 192 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, NonNegativeValues))); 134 state.styleMap().mapFillSize(property, fillLayer, toAnimatableUnknown(value)->toCSSValue().get()); 146 void setOnFillLayers(FillLayer* fillLayer, const AnimatableValue* value, StyleResolverState& state) 150 FillLayer* prev = 0; 152 if (!fillLayer) { 159 fillLayer = new FillLayer(BackgroundFillLayer) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
FillLayer.cpp | 23 #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, bool useInitialValues) 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::initialFillAttachment(type) [all...] |
StyleBackgroundData.h | 28 #include "core/rendering/style/FillLayer.h" 48 const FillLayer& background() const { return m_background; } 58 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; } 142 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } } 144 FillLayer& operator=(const FillLayer& o); 145 FillLayer(const FillLayer& o) [all...] |
CachedUAStyle.h | 56 FillLayer backgroundLayers;
|
StyleRareNonInheritedData.h | 33 #include "core/rendering/style/FillLayer.h" 125 FillLayer m_mask;
|
RenderStyle.h | 643 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); } 644 const FillLayer* backgroundLayers() const { return &(m_background->background()); } 656 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); } 657 const FillLayer* maskLayers() const { return &(rareNonInheritedData->m_mask); } [all...] |
RenderStyle.cpp | [all...] |
/external/clang/test/SemaCXX/ |
invalid-member-expr.cpp | 63 class FillLayer {
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
CSSPropertyAnimation.cpp | 598 // Wrapper base class for an animatable property in a FillLayer 607 virtual bool equals(const FillLayer*, const FillLayer*) const = 0; 608 virtual void blend(const AnimationBase*, FillLayer*, const FillLayer*, const FillLayer*, double) const = 0; 615 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const) 620 virtual bool equals(const FillLayer* a, const FillLayer* b) const 632 T (FillLayer::*m_getter)() const [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
InlineFlowBox.h | 114 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;
|
RenderBoxModelObject.h | 168 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0); 257 void calculateBackgroundImageGeometry(const FillLayer*, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0); 312 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const;
|
RenderBox.h | [all...] |
RenderBox.cpp | [all...] |
RenderObject.h | 662 void updateFillImages(const FillLayer*, const FillLayer*); [all...] |
RenderObject.cpp | 843 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer) [all...] |
RenderTheme.cpp | 628 FillLayer backgroundCopy = uaStyle.backgroundLayers; 629 FillLayer backgroundLayersCopy = *style.backgroundLayers(); [all...] |
RenderBoxModelObject.cpp | 519 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& color, const FillLayer* bgLayer, const LayoutRect& rect, [all...] |
InlineFlowBox.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSComputedStyleDeclaration.cpp | 602 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle& style) [all...] |
/external/chromium_org/skia/ext/ |
platform_canvas_unittest.cc | 238 TEST(PlatformCanvas, FillLayer) {
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSAnimatableValueFactory.cpp | 185 inline static PassRefPtr<AnimatableValue> createFromFillLayers(const FillLayer* fillLayer, const RenderStyle& style) 187 ASSERT(fillLayer); 189 while (fillLayer) { 191 if (!fillLayer->isImageSet()) 193 values.append(createFromStyleImage(fillLayer->image())); 195 if (!fillLayer->isXPositionSet()) 197 values.append(createFromLength(fillLayer->xPosition(), style)); 199 if (!fillLayer->isYPositionSet()) 201 values.append(createFromLength(fillLayer->yPosition(), style)) [all...] |