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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
RectangleShape.h 46 , m_bounds(bounds)
53 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); }
64 float x() const { return m_bounds.x(); }
65 float y() const { return m_bounds.y(); }
66 float width() const { return m_bounds.width(); }
67 float height() const { return m_bounds.height(); }
69 FloatRect m_bounds; member in class:WebCore::RectangleShape
BoxShape.h 42 , m_bounds(bounds)
48 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); }
57 FloatRoundedRect m_bounds; member in class:WebCore::BoxShape
BoxShape.cpp 39 FloatRect marginBounds(m_bounds.rect());
47 FloatRect paddingBounds(m_bounds.rect());
55 FloatRoundedRect marginBounds(m_bounds);
65 FloatRoundedRect paddingBounds(m_bounds);
RasterShape.h 49 const IntRect& bounds() const { return m_bounds; }
50 bool isEmpty() const { return m_bounds.isEmpty(); }
82 IntRect m_bounds; member in class:WebCore::RasterShapeIntervals
RectangleShape.cpp 53 return m_bounds;
67 return m_bounds;
RasterShape.cpp 79 m_bounds.unite(IntRect(x1, y, x2 - x1, 1));
94 m_bounds.unite(IntRect(interval.x1(), y, interval.width(), 1));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
DisplayList.cpp 39 : m_bounds(bounds)
50 return m_bounds;
DisplayList.h 55 FloatRect m_bounds; member in class:WebCore::FINAL
  /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))
547 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(); }
132 IntRect m_bounds; member in class:WebCore::Region
166 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
  /external/chromium/chrome/browser/ui/tabs/
dock_info_win.cc 283 const gfx::Rect& m_bounds = info.monitor_bounds(); local
284 int mid_x = m_bounds.x() + m_bounds.width() / 2;
285 int mid_y = m_bounds.y() + m_bounds.height() / 2;
288 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(),
290 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(),
292 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y,
294 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y,
  /external/chromium_org/chrome/browser/ui/views/tabs/
dock_info_win.cc 337 const gfx::Rect& m_bounds = info.monitor_bounds(); local
338 int mid_x = m_bounds.x() + m_bounds.width() / 2;
339 int mid_y = m_bounds.y() + m_bounds.height() / 2;
342 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(),
344 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(),
346 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y,
348 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y,

Completed in 107 milliseconds