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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.h 32 class FillLayer;
49 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
50 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
51 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
52 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
53 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
55 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const;
57 void mapFillSize(CSSPropertyID, FillLayer*, CSSValue*) const
    [all...]
CSSToStyleMap.cpp 40 #include "core/rendering/style/FillLayer.h"
64 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const
67 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
90 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const
93 layer->setClip(FillLayer::initialFillClip(layer->type()));
104 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) const
107 layer->setComposite(FillLayer::initialFillComposite(layer->type()));
118 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) const
121 layer->setBlendMode(FillLayer::initialFillBlendMode(layer->type()));
132 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) cons
    [all...]
CSSComputedStyleDeclaration.cpp 590 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style)
    [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)
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 29 #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);
66 ~FillLayer();
84 const FillLayer* next() const { return m_next; }
85 FillLayer* next() { return m_next; }
137 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
139 FillLayer& operator=(const FillLayer& o);
140 FillLayer(const FillLayer& o)
    [all...]
CachedUAStyle.h 56 FillLayer backgroundLayers;
StyleRareNonInheritedData.h 34 #include "core/rendering/style/FillLayer.h"
122 FillLayer m_mask;
StyleRareNonInheritedData.cpp 42 , m_mask(FillLayer(MaskFillLayer))
RenderStyle.h 625 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
626 const FillLayer* backgroundLayers() const { return &(m_background->background()); }
638 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
639 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/page/animation/
CSSPropertyAnimation.cpp 734 // Wrapper base class for an animatable property in a FillLayer
743 virtual bool equals(const FillLayer*, const FillLayer*) const = 0;
744 virtual void blend(const AnimationBase*, FillLayer*, const FillLayer*, const FillLayer*, double) const = 0;
751 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const)
756 virtual bool equals(const FillLayer* a, const FillLayer* b) const
768 T (FillLayer::*m_getter)() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResourceLoader.cpp 36 #include "core/rendering/style/FillLayer.h"
134 for (FillLayer* backgroundLayer = style->accessBackgroundLayers(); backgroundLayer; backgroundLayer = backgroundLayer->next()) {
191 for (FillLayer* maskLayer = style->accessMaskLayers(); maskLayer; maskLayer = maskLayer->next()) {
  /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 163 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, const LayoutRect&, BackgroundBleedAvoidance, InlineFlowBox* = 0, const LayoutSize& = LayoutSize(), CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
245 void calculateBackgroundImageGeometry(const FillLayer*, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0);
300 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const;
RenderBox.h     [all...]
RenderBox.cpp     [all...]
RenderObject.h 664 void updateFillImages(const FillLayer*, const FillLayer*);
    [all...]
RenderObject.cpp 838 static bool mustRepaintFillLayers(const RenderObject* renderer, const FillLayer* layer)
    [all...]
RenderTheme.cpp 683 FillLayer backgroundCopy = uaStyle.backgroundLayers;
684 FillLayer backgroundLayersCopy = *style.backgroundLayers();
    [all...]
RenderBoxModelObject.cpp 523 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& color, const FillLayer* bgLayer, const LayoutRect& rect,
    [all...]
InlineFlowBox.cpp     [all...]
  /external/chromium_org/skia/ext/
platform_canvas_unittest.cc 241 TEST(PlatformCanvas, FillLayer) {
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_rendering.target.darwin-arm.mk 149 third_party/WebKit/Source/core/rendering/style/FillLayer.cpp \

Completed in 593 milliseconds

1 2