Searched refs:m_bounds (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DRectangleShape.h45 : m_bounds(bounds)
51 virtual bool isEmpty() const override { return m_bounds.isEmpty(); }
61 float x() const { return m_bounds.x(); }
62 float y() const { return m_bounds.y(); }
63 float width() const { return m_bounds.width(); }
64 float height() const { return m_bounds.height(); }
66 FloatRect m_bounds; member in class:WebCore::RectangleShape
H A DBoxShape.h46 : m_bounds(bounds)
51 virtual bool isEmpty() const override { return m_bounds.isEmpty(); }
59 FloatRoundedRect m_bounds; member in class:WebCore::BoxShape
H A DRasterShape.h50 const IntRect& bounds() const { return m_bounds; }
51 bool isEmpty() const { return m_bounds.isEmpty(); }
74 IntRect m_bounds; member in class:WebCore::RasterShapeIntervals
H A DRectangleShape.cpp47 return m_bounds;
93 paths.shape.addRoundedRect(m_bounds, FloatSize(m_radii.width(), m_radii.height()), Path::PreferBezierRoundedRect);
H A DBoxShape.cpp99 FloatRect marginBounds(m_bounds.rect());
107 FloatRoundedRect marginBounds(m_bounds);
165 paths.shape.addRoundedRect(m_bounds, Path::PreferBezierRoundedRect);
H A DRasterShape.cpp112 m_bounds = IntRect();
117 m_bounds.unite(IntRect(intervalAtY.x1(), y, intervalAtY.width(), 1));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DRegion.cpp44 : m_bounds(rect)
70 if (!m_bounds.contains(region.m_bounds))
78 if (!m_bounds.contains(point))
106 if (!m_bounds.intersects(region.m_bounds))
569 m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds
[all...]
H A DRegion.h41 IntRect bounds() const { return m_bounds; }
42 bool isEmpty() const { return m_bounds.isEmpty(); }
165 IntRect m_bounds; member in class:WebCore::Region
199 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;

Completed in 183 milliseconds