Searched refs:m_shape (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableShapeValue.cpp40 if (m_shape->type() != ShapeValue::Shape
41 || shapeValue->m_shape->type() != ShapeValue::Shape
42 || m_shape->cssBox() != shapeValue->m_shape->cssBox())
45 const BasicShape* fromShape = this->m_shape->shape();
46 const BasicShape* toShape = shapeValue->m_shape->shape();
57 const BasicShape* fromShape = this->m_shape->shape();
58 const BasicShape* toShape = shapeValue->m_shape->shape();
59 return AnimatableShapeValue::create(ShapeValue::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get());
64 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape
[all...]
H A DAnimatableShapeValue.h46 ShapeValue* shapeValue() const { return m_shape.get(); }
56 : m_shape(shape)
58 ASSERT(m_shape);
63 RefPtr<ShapeValue> m_shape; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DClipPathOperation.h102 const BasicShape* basicShape() const { return m_shape.get(); }
103 bool isValid() const { return m_shape.get(); }
104 WindRule windRule() const { return m_shape->windRule(); }
107 ASSERT(m_shape);
110 m_shape->path(*m_path, boundingRect);
119 , m_shape(shape)
123 RefPtr<BasicShape> m_shape; member in class:blink::FINAL
133 BasicShape* otherShape = toShapeClipPathOperation(o).m_shape.get();
134 if (!m_shape.get() || !otherShape)
135 return static_cast<bool>(m_shape
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.h40 bool isDefault() const { return m_shape == Default; }
67 Shape m_shape; member in class:blink::FINAL
H A DHTMLAreaElement.cpp42 , m_shape(Unknown)
52 m_shape = Default;
54 m_shape = Circle;
56 m_shape = Poly;
58 m_shape = Rect;
99 if (m_shape == Default)
121 if (m_coords.isEmpty() && m_shape != Default)
128 Shape shape = m_shape;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.cpp45 , m_shape(rect)
53 for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && span + 1 != end; ++span) {
57 for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span); segment != end && segment + 1 != end; segment += 2) {
73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape);
81 for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && span + 1 != end; ++span) {
90 for (Shape::SegmentIterator segment = m_shape
[all...]
H A DRegion.h42 bool isRect() const { return m_shape.isRect(); }
137 Shape m_shape; member in class:blink::Region
170 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShapeValue.h66 BasicShape* shape() const { return m_shape.get(); }
90 , m_shape(shape)
113 RefPtr<BasicShape> m_shape; member in class:blink::ShapeValue
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.h111 void markShapeAsDirty() { m_shape.clear(); }
112 bool isShapeDirty() { return !m_shape.get(); }
141 mutable OwnPtr<Shape> m_shape; member in class:blink::FINAL
H A DShapeOutsideInfo.cpp142 if (Shape* shape = m_shape.get())
162 m_shape = Shape::createShape(shapeValue.shape(), m_referenceBoxLogicalSize, writingMode, margin);
166 m_shape = createShapeForImage(shapeValue.image(), shapeImageThreshold, writingMode, margin);
170 m_shape = Shape::createLayoutBoxShape(shapeRect, writingMode, margin);
175 ASSERT(m_shape);
176 return *m_shape;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.h214 void setShape(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_shape = val; }
237 , m_shape(other.m_shape)
253 RefPtrWillBeMember<CSSPrimitiveValue> m_shape; member in class:blink::CSSRadialGradientValue
H A DCSSGradientValue.cpp823 if (m_shape || m_sizingBehavior) {
825 if (m_shape) {
826 result.append(m_shape->cssText());
862 if (m_shape && m_shape->getValueID() != CSSValueEllipse && (m_sizingBehavior || (!m_sizingBehavior && !m_endHorizontalSize))) {
1043 if ((m_shape && m_shape->getValueID() == CSSValueCircle)
1044 || (!m_shape && !m_sizingBehavior && m_endHorizontalSize && !m_endVerticalSize))
1182 if (m_shape)
1183 equalShape = compareCSSValuePtr(m_shape, othe
[all...]
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp739 CvDrawShape m_shape[16]; member in class:CvImageDrawer

Completed in 1483 milliseconds