/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
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
|
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
|
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
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
DisplayList.h | 55 FloatRect m_bounds; member in class:WebCore::FINAL
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
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,
|