Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableShapeValue.cpp40 if (m_shape->type() != ShapeValue::Shape || shapeValue->m_shape->type() != ShapeValue::Shape) in interpolateTo()
43 const BasicShape* fromShape = this->m_shape->shape(); in interpolateTo()
44 const BasicShape* toShape = shapeValue->m_shape->shape(); in interpolateTo()
54 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get(); in equalTo()
55 return m_shape == shape || (m_shape && shape && *m_shape == *shape); in equalTo()
DAnimatableShapeValue.h46 ShapeValue* shapeValue() const { return m_shape.get(); } in shapeValue()
53 : m_shape(shape) in AnimatableShapeValue()
55 ASSERT(m_shape); in AnimatableShapeValue()
60 RefPtr<ShapeValue> m_shape; variable
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DRegion.cpp45 , m_shape(rect) in Region()
53 …for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && spa… in rects()
57 …for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span)… in rects()
73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape); in contains()
81 …for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && spa… in contains()
90 …for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span)… in contains()
109 return Shape::compareShapes<Shape::CompareIntersectsOperation>(m_shape, region.m_shape); in intersects()
548 m_shape.dump(); in dump()
557 m_shape = Shape(); in intersect()
562 Shape intersectedShape = Shape::intersectShapes(m_shape, region.m_shape); in intersect()
[all …]
DRegion.h42 bool isRect() const { return m_shape.isRect(); } in isRect()
133 Shape m_shape; variable
166 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DClipPathOperation.h102 const BasicShape* basicShape() const { return m_shape.get(); } in basicShape()
103 WindRule windRule() const { return m_shape->windRule(); } in windRule()
106 ASSERT(m_shape); in path()
109 m_shape->path(*m_path, boundingRect); in path()
116 return isSameType(o) && m_shape == static_cast<const ShapeClipPathOperation&>(o).m_shape;
121 , m_shape(shape) in ShapeClipPathOperation()
125 RefPtr<BasicShape> m_shape; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeInfo.cpp52 if (Shape* shape = m_shape.get()) in computedShape()
65m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding… in computedShape()
69m_shape = Shape::createShape(shapeValue->image(), shapeImageThreshold, m_shapeLogicalSize, writing… in computedShape()
72 m_shape = Shape::createLayoutBoxShape(m_shapeLogicalSize, writingMode, margin, padding); in computedShape()
79 ASSERT(m_shape); in computedShape()
80 return m_shape.get(); in computedShape()
DShapeInfo.h118 void dirtyShapeSize() { m_shape.clear(); } in dirtyShapeSize()
119 bool shapeSizeDirty() { return !m_shape.get(); } in shapeSizeDirty()
172 mutable OwnPtr<Shape> m_shape;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLAreaElement.cpp43 , m_shape(Unknown) in HTMLAreaElement()
57 m_shape = Default; in parseAttribute()
59 m_shape = Circle; in parseAttribute()
61 m_shape = Poly; in parseAttribute()
63 m_shape = Rect; in parseAttribute()
104 if (m_shape == Default) in computePath()
126 if (m_coords.isEmpty() && m_shape != Default) in getRegion()
133 Shape shape = m_shape; in getRegion()
DHTMLAreaElement.h39 bool isDefault() const { return m_shape == Default; } in isDefault()
68 Shape m_shape; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DShapeValue.h72 BasicShape* shape() const { return m_shape.get(); } in shape()
90 , m_shape(shape) in ShapeValue()
113 RefPtr<BasicShape> m_shape; variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSGradientValue.h192 void setShape(PassRefPtr<CSSPrimitiveValue> val) { m_shape = val; } in setShape()
213 , m_shape(other.m_shape) in CSSRadialGradientValue()
229 RefPtr<CSSPrimitiveValue> m_shape; variable
DCSSGradientValue.cpp791 if (m_shape || m_sizingBehavior) { in customCSSText()
793 if (m_shape) { in customCSSText()
794 result.append(m_shape->cssText()); in customCSSText()
830 …if (m_shape && m_shape->getValueID() != CSSValueEllipse && (m_sizingBehavior || (!m_sizingBehavior… in customCSSText()
1011 if ((m_shape && m_shape->getValueID() == CSSValueCircle) in createGradient()
1012 || (!m_shape && !m_sizingBehavior && m_endHorizontalSize && !m_endVerticalSize)) in createGradient()
1150 if (m_shape) in equals()
1151 equalShape = compareCSSValuePtr(m_shape, other.m_shape); in equals()
1157 equalShape = !other.m_shape; in equals()
/external/opencv/cvaux/include/
Dcvvidsurv.hpp739 CvDrawShape m_shape[16]; member in CvImageDrawer