Home
last modified time | relevance | path

Searched refs:m_bounds (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DRectangleShape.h46 , m_bounds(bounds) in RectangleShape()
53 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); } in isEmpty()
64 float x() const { return m_bounds.x(); } in x()
65 float y() const { return m_bounds.y(); } in y()
66 float width() const { return m_bounds.width(); } in width()
67 float height() const { return m_bounds.height(); } in height()
69 FloatRect m_bounds; variable
DBoxShape.h42 , m_bounds(bounds) in BoxShape()
48 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); } in isEmpty()
57 FloatRoundedRect m_bounds; variable
DBoxShape.cpp39 FloatRect marginBounds(m_bounds.rect()); in shapeMarginLogicalBoundingBox()
47 FloatRect paddingBounds(m_bounds.rect()); in shapePaddingLogicalBoundingBox()
55 FloatRoundedRect marginBounds(m_bounds); in shapeMarginBounds()
65 FloatRoundedRect paddingBounds(m_bounds); in shapePaddingBounds()
DRasterShape.h49 const IntRect& bounds() const { return m_bounds; } in bounds()
50 bool isEmpty() const { return m_bounds.isEmpty(); } in isEmpty()
82 IntRect m_bounds; variable
DRectangleShape.cpp53 return m_bounds; in shapePaddingBounds()
67 return m_bounds; in shapeMarginBounds()
DRasterShape.cpp79 m_bounds.unite(IntRect(x1, y, x2 - x1, 1)); in appendInterval()
94 m_bounds.unite(IntRect(interval.x1(), y, interval.width(), 1)); in uniteMarginInterval()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DRegion.cpp44 : m_bounds(rect) in Region()
70 if (!m_bounds.contains(region.m_bounds)) in contains()
78 if (!m_bounds.contains(point)) in contains()
106 if (!m_bounds.intersects(region.m_bounds)) in intersects()
547 …printf("Bounds: (%d, %d, %d, %d)\n", m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds.height… in dump()
554 if (m_bounds.isEmpty()) in intersect()
556 if (!m_bounds.intersects(region.m_bounds)) { in intersect()
558 m_bounds = IntRect(); in intersect()
565 m_bounds = m_shape.bounds(); in intersect()
572 if (isRect() && m_bounds.contains(region.m_bounds)) in unite()
[all …]
DRegion.h40 IntRect bounds() const { return m_bounds; } in bounds()
41 bool isEmpty() const { return m_bounds.isEmpty(); } in isEmpty()
132 IntRect m_bounds; variable
166 return a.m_bounds == b.m_bounds && a.m_shape == b.m_shape;
/external/chromium/chrome/browser/ui/tabs/
Ddock_info_win.cc283 const gfx::Rect& m_bounds = info.monitor_bounds(); in GetDockInfoAtPoint() local
284 int mid_x = m_bounds.x() + m_bounds.width() / 2; in GetDockInfoAtPoint()
285 int mid_y = m_bounds.y() + m_bounds.height() / 2; in GetDockInfoAtPoint()
288 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(), in GetDockInfoAtPoint()
290 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(), in GetDockInfoAtPoint()
292 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y, in GetDockInfoAtPoint()
294 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y, in GetDockInfoAtPoint()
/external/chromium_org/chrome/browser/ui/views/tabs/
Ddock_info_win.cc337 const gfx::Rect& m_bounds = info.monitor_bounds(); in GetDockInfoAtPoint() local
338 int mid_x = m_bounds.x() + m_bounds.width() / 2; in GetDockInfoAtPoint()
339 int mid_y = m_bounds.y() + m_bounds.height() / 2; in GetDockInfoAtPoint()
342 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(), in GetDockInfoAtPoint()
344 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(), in GetDockInfoAtPoint()
346 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y, in GetDockInfoAtPoint()
348 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y, in GetDockInfoAtPoint()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DDisplayList.cpp39 : m_bounds(bounds) in DisplayList()
50 return m_bounds; in bounds()
DDisplayList.h55 FloatRect m_bounds;