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

/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DClipPathOperation.h103 const BasicShape* basicShape() const { return m_shape.get(); }
104 WindRule windRule() const { return m_shape->windRule(); }
107 ASSERT(m_shape);
110 m_shape->path(*m_path, boundingRect);
120 return m_shape == other->m_shape;
125 , m_shape(shape)
129 RefPtr<BasicShape> m_shape; member in class:WebCore::ShapeClipPathOperation
/macosx-10.9.5/WebCore-7537.78.1/rendering/shapes/
H A DShapeInfo.cpp45 if (Shape* shape = m_shape.get())
53 m_shape = Shape::createShape(shape, LayoutSize(m_shapeLogicalWidth, m_shapeLogicalHeight), m_renderer->style()->writingMode(), m_renderer->style()->shapeMargin(), m_renderer->style()->shapePadding());
54 ASSERT(m_shape);
55 return m_shape.get();
H A DShapeInfo.h105 void dirtyShapeSize() { m_shape.clear(); }
106 bool shapeSizeDirty() { return !m_shape.get(); }
123 mutable OwnPtr<Shape> m_shape; member in class:WebCore::ShapeInfo
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DShapeValue.h64 BasicShape* shape() const { return m_shape.get(); }
76 , m_shape(shape)
89 RefPtr<BasicShape> m_shape; member in class:WebCore::ShapeValue
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DRegion.cpp45 , m_shape(rect)
53 for (Shape::SpanIterator span = m_shape.spans_begin(), end = m_shape.spans_end(); span != end && span + 1 != end; ++span) {
57 for (Shape::SegmentIterator segment = m_shape.segments_begin(span), end = m_shape.segments_end(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.spans_begin(), end = m_shape.spans_end(); span != end && span + 1 != end; ++span) {
90 for (Shape::SegmentIterator segment = m_shape
[all...]
H A DRegion.h41 bool isRect() const { return m_shape.isRect(); }
132 Shape m_shape; member in class:WebCore::Region
165 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLAreaElement.cpp46 , m_shape(Unknown)
60 m_shape = Default;
62 m_shape = Circle;
64 m_shape = Poly;
66 m_shape = Rect;
107 if (m_shape == Default)
129 if (!m_coords && m_shape != Default)
136 Shape shape = m_shape;
H A DHTMLAreaElement.h40 bool isDefault() const { return m_shape == Default; }
75 Shape m_shape; member in class:WebCore::FINAL
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSGradientValue.h191 void setShape(PassRefPtr<CSSPrimitiveValue> val) { m_shape = val; }
212 , m_shape(other.m_shape)
228 RefPtr<CSSPrimitiveValue> m_shape; member in class:WebCore::CSSRadialGradientValue
H A DCSSGradientValue.cpp797 if (m_shape || m_sizingBehavior) {
799 if (m_shape) {
800 result.append(m_shape->cssText());
836 if (m_shape && m_shape->getIdent() != CSSValueEllipse && (m_sizingBehavior || (!m_sizingBehavior && !m_endHorizontalSize))) {
1021 if ((m_shape && m_shape->getIdent() == CSSValueCircle)
1022 || (!m_shape && !m_sizingBehavior && m_endHorizontalSize && !m_endVerticalSize))
1156 if (m_shape)
1157 equalShape = compareCSSValuePtr(m_shape, othe
[all...]

Completed in 137 milliseconds