HomeSort by relevance Sort by last modified time
    Searched full:m_bounds (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.h 46 , m_bounds(bounds)
52 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::FINAL
BoxShape.cpp 39 FloatRect marginBounds(m_bounds.rect());
47 FloatRoundedRect marginBounds(m_bounds);
105 paths.shape.addRoundedRect(m_bounds.rect(), m_bounds.radii().topLeft(), m_bounds.radii().topRight(), m_bounds.radii().bottomLeft(), m_bounds.radii().bottomRight());
BoxShape.h 42 , m_bounds(bounds)
47 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); }
54 FloatRoundedRect m_bounds; member in class:WebCore::FINAL
RasterShape.h 50 const IntRect& bounds() const { return m_bounds; }
51 bool isEmpty() const { return m_bounds.isEmpty(); }
75 IntRect m_bounds; member in class:WebCore::RasterShapeIntervals
RectangleShape.cpp 47 return m_bounds;
93 paths.shape.addRoundedRect(m_bounds, m_radii);
RasterShape.cpp 112 m_bounds = IntRect();
117 m_bounds.unite(IntRect(intervalAtY.x1(), y, intervalAtY.width(), 1));
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
Region.cpp 44 : 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))
568 printf("Bounds: (%d, %d, %d, %d)\n", m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds.height())
    [all...]
Region.h 40 IntRect bounds() const { return m_bounds; }
41 bool isEmpty() const { return m_bounds.isEmpty(); }
136 IntRect m_bounds; member in class:WebCore::Region
170 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DisplayList.cpp 42 : m_bounds(bounds)
52 return m_bounds;
DisplayList.h 68 FloatRect m_bounds; member in class:WebCore::FINAL

Completed in 5279 milliseconds