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 in usesDefaultInterpolationWith()
41 || shapeValue->m_shape->type() != ShapeValue::Shape in usesDefaultInterpolationWith()
42 || m_shape->cssBox() != shapeValue->m_shape->cssBox()) in usesDefaultInterpolationWith()
45 const BasicShape* fromShape = this->m_shape->shape(); in usesDefaultInterpolationWith()
46 const BasicShape* toShape = shapeValue->m_shape->shape(); in usesDefaultInterpolationWith()
57 const BasicShape* fromShape = this->m_shape->shape(); in interpolateTo()
58 const BasicShape* toShape = shapeValue->m_shape->shape(); in interpolateTo()
59 …Value::createShapeValue(toShape->blend(fromShape, fraction), shapeValue->m_shape->cssBox()).get()); in interpolateTo()
64 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get(); in equalTo()
65 return m_shape == shape || (m_shape && shape && *m_shape == *shape); in equalTo()
DAnimatableShapeValue.h46 ShapeValue* shapeValue() const { return m_shape.get(); } in shapeValue()
56 : m_shape(shape) in AnimatableShapeValue()
58 ASSERT(m_shape); in AnimatableShapeValue()
63 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()
569 m_shape.dump(); in dump()
578 m_shape = Shape(); in intersect()
583 Shape intersectedShape = Shape::intersectShapes(m_shape, region.m_shape); in intersect()
[all …]
DRegion.h42 bool isRect() const { return m_shape.isRect(); } in isRect()
137 Shape m_shape; variable
170 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()
118 , m_shape(shape) in ShapeClipPathOperation()
122 RefPtr<BasicShape> m_shape; variable
130 return isSameType(o) && *m_shape == *toShapeClipPathOperation(o).m_shape;
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLAreaElement.cpp42 , m_shape(Unknown) in HTMLAreaElement()
53 m_shape = Default; in DEFINE_NODE_FACTORY()
55 m_shape = Circle; in DEFINE_NODE_FACTORY()
57 m_shape = Poly; in DEFINE_NODE_FACTORY()
59 m_shape = Rect; in DEFINE_NODE_FACTORY()
100 if (m_shape == Default) in computePath()
122 if (m_coords.isEmpty() && m_shape != Default) in getRegion()
129 Shape shape = m_shape; in getRegion()
DHTMLAreaElement.h39 bool isDefault() const { return m_shape == Default; } in isDefault()
66 Shape m_shape; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DShapeValue.h66 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/rendering/shapes/
DShapeOutsideInfo.h88 void markShapeAsDirty() { m_shape.clear(); } in markShapeAsDirty()
89 bool isShapeDirty() { return !m_shape.get(); } in isShapeDirty()
120 mutable OwnPtr<Shape> m_shape; variable
DShapeOutsideInfo.cpp125 if (Shape* shape = m_shape.get()) in computedShape()
143m_shape = Shape::createShape(shapeValue.shape(), m_referenceBoxLogicalSize, writingMode, margin); in computedShape()
147 m_shape = createShapeForImage(shapeValue.image(), shapeImageThreshold, writingMode, margin); in computedShape()
151 m_shape = Shape::createLayoutBoxShape(shapeRect, writingMode, margin); in computedShape()
156 ASSERT(m_shape); in computedShape()
157 return *m_shape; in computedShape()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSGradientValue.h214 void setShape(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_shape = val; } in setShape()
237 , m_shape(other.m_shape) in CSSRadialGradientValue()
253 RefPtrWillBeMember<CSSPrimitiveValue> m_shape; variable
DCSSGradientValue.cpp806 if (m_shape || m_sizingBehavior) { in customCSSText()
808 if (m_shape) { in customCSSText()
809 result.append(m_shape->cssText()); in customCSSText()
845 …if (m_shape && m_shape->getValueID() != CSSValueEllipse && (m_sizingBehavior || (!m_sizingBehavior… in customCSSText()
1026 if ((m_shape && m_shape->getValueID() == CSSValueCircle) in createGradient()
1027 || (!m_shape && !m_sizingBehavior && m_endHorizontalSize && !m_endVerticalSize)) in createGradient()
1165 if (m_shape) in equals()
1166 equalShape = compareCSSValuePtr(m_shape, other.m_shape); in equals()
1172 equalShape = !other.m_shape; in equals()
1183 visitor->trace(m_shape); in traceAfterDispatch()
/external/opencv/cvaux/include/
Dcvvidsurv.hpp739 CvDrawShape m_shape[16]; member in CvImageDrawer