HomeSort by relevance Sort by last modified time
    Searched refs:basicShape (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 41 PassRefPtr<CSSValue> valueForBasicShape(const BasicShape* basicShape)
44 switch (basicShape->type()) {
45 case BasicShape::BasicShapeRectangleType: {
46 const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(basicShape);
59 case BasicShape::BasicShapeCircleType: {
60 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape);
70 case BasicShape::BasicShapeEllipseType: {
71 const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(basicShape);
82 case BasicShape::BasicShapePolygonType:
    [all...]
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 103 PassOwnPtr<Shape> Shape::createShape(const BasicShape* basicShape, const LayoutSize& logicalBoxSize, WritingMode writingMode, Length margin, Length padding)
105 ASSERT(basicShape);
112 switch (basicShape->type()) {
114 case BasicShape::BasicShapeRectangleType: {
115 const BasicShapeRectangle* rectangle = static_cast<const BasicShapeRectangle*>(basicShape);
131 case BasicShape::BasicShapeCircleType: {
132 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape);
142 case BasicShape::BasicShapeEllipseType: {
143 const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(basicShape);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipPathOperation.h 98 static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape)
103 const BasicShape* basicShape() const { return m_shape.get(); }
123 ShapeClipPathOperation(PassRefPtr<BasicShape> shape)
129 RefPtr<BasicShape> m_shape;
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 135 const BasicShape* fromShape = static_cast<ShapeClipPathOperation*>(from)->basicShape();
136 const BasicShape* toShape = static_cast<ShapeClipPathOperation*>(to)->basicShape();
146 // FIXME Bug 102723: Shape-inside should be able to animate a value of 'outside-shape' when shape-outside is set to a BasicShape
150 const BasicShape* fromShape = from->shape();
151 const BasicShape* toShape = to->shape();
    [all...]

Completed in 478 milliseconds