Searched defs:LayoutRect (Results 1 - 3 of 3) sorted by last modified time

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutRect.cpp32 #include "platform/geometry/LayoutRect.h"
41 LayoutRect::LayoutRect(const FloatRect& r) function in class:blink::LayoutRect
47 bool LayoutRect::intersects(const LayoutRect& other) const
55 bool LayoutRect::contains(const LayoutRect& other) const
61 void LayoutRect::intersect(const LayoutRect& other)
76 void LayoutRect
[all...]
H A DLayoutRect.h43 class PLATFORM_EXPORT LayoutRect { class in namespace:blink
45 LayoutRect() { } function in class:blink::LayoutRect
46 LayoutRect(const LayoutPoint& location, const LayoutSize& size) function in class:blink::LayoutRect
48 LayoutRect(LayoutUnit x, LayoutUnit y, LayoutUnit width, LayoutUnit height) function in class:blink::LayoutRect
50 LayoutRect(const FloatPoint& location, const FloatSize& size) function in class:blink::LayoutRect
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { } function in class:blink::LayoutRect
54 explicit LayoutRect(const FloatRect&); // don't do this implicitly since it's lossy
137 bool intersects(const LayoutRect&) const;
138 bool contains(const LayoutRect&) const;
146 void intersect(const LayoutRect
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h26 #include "platform/geometry/LayoutRect.h"
31 const LayoutRect& left() const { return m_left; }
32 const LayoutRect& center() const { return m_center; }
33 const LayoutRect& right() const { return m_right; }
35 void uniteLeft(const LayoutRect& r) { m_left.unite(r); }
36 void uniteCenter(const LayoutRect& r) { m_center.unite(r); }
37 void uniteRight(const LayoutRect& r) { m_right.unite(r); }
40 operator LayoutRect() const
42 LayoutRect result = m_left;
55 LayoutRect m_lef
[all...]

Completed in 548 milliseconds