/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ShapeValue.h | 41 class ShapeValue : public RefCounted<ShapeValue> { 44 // The Auto value is defined by a null ShapeValue* 50 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox) 52 return adoptRef(new ShapeValue(shape, cssBox)); 55 static PassRefPtr<ShapeValue> createBoxShapeValue(CSSBoxType cssBox) 57 return adoptRef(new ShapeValue(cssBox)); 60 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image) 62 return adoptRef(new ShapeValue(image)); 85 bool operator==(const ShapeValue& other) const [all...] |
StyleRareNonInheritedData.h | 38 #include "core/rendering/style/ShapeValue.h" 132 RefPtr<ShapeValue> m_shapeOutside;
|
RenderStyle.h | 41 #include "core/rendering/style/ShapeValue.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
AnimatableShapeValue.h | 35 #include "core/rendering/style/ShapeValue.h" 42 static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape) 46 ShapeValue* shapeValue() const { return m_shape.get(); } 55 AnimatableShapeValue(ShapeValue* shape) 63 RefPtr<ShapeValue> m_shape;
|
AnimatableShapeValue.cpp | 38 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value); 40 if (m_shape->type() != ShapeValue::Shape 41 || shapeValue->m_shape->type() != ShapeValue::Shape 42 || m_shape->cssBox() != shapeValue->m_shape->cssBox()) 46 const BasicShape* toShape = shapeValue->m_shape->shape(); 56 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value); 58 const BasicShape* toShape = shapeValue->m_shape->shape(); 59 return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get()) [all...] |
AnimatableValueTestHelperTest.cpp | 84 PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())),
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResourceLoader.h | 34 class ShapeValue; 53 void loadPendingShapeImage(RenderStyle*, ShapeValue*, float deviceScaleFactor);
|
StyleResourceLoader.cpp | 100 void StyleResourceLoader::loadPendingShapeImage(RenderStyle* renderStyle, ShapeValue* shapeValue, float deviceScaleFactor) 102 if (!shapeValue) 105 StyleImage* image = shapeValue->image(); 114 shapeValue->setImage(doLoadPendingImage(m_fetcher, toStylePendingImage(image), deviceScaleFactor, options));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeOutsideInfo.cpp | 43 CSSBoxType referenceBox(const ShapeValue& shapeValue) 45 if (shapeValue.cssBox() == BoxMissing) 47 return shapeValue.cssBox(); 157 const ShapeValue& shapeValue = *style.shapeOutside(); 159 switch (shapeValue.type()) { 160 case ShapeValue::Shape: 161 ASSERT(shapeValue.shape()); 162 m_shape = Shape::createShape(shapeValue.shape(), m_referenceBoxLogicalSize, writingMode, margin) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderObject.h | 705 void updateShapeImage(const ShapeValue*, const ShapeValue*); [all...] |
RenderObject.cpp | [all...] |
RenderBox.cpp | 223 const ShapeValue* shapeOutside = style.shapeOutside(); 224 const ShapeValue* oldShapeOutside = oldStyle ? oldStyle->shapeOutside() : RenderStyle::initialShapeOutside(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSAnimatableValueFactory.cpp | 221 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromShapeValue(ShapeValue* value)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSComputedStyleDeclaration.cpp | 65 #include "core/rendering/style/ShapeValue.h" [all...] |