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

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutRect.cpp 32 #include "platform/geometry/LayoutRect.h"
41 LayoutRect::LayoutRect(const FloatRect& r)
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::unite(const LayoutRect& other
    [all...]
LayoutRect.h 43 class PLATFORM_EXPORT LayoutRect {
45 LayoutRect() { }
46 LayoutRect(const LayoutPoint& location, const LayoutSize& size)
48 LayoutRect(LayoutUnit x, LayoutUnit y, LayoutUnit width, LayoutUnit height)
50 LayoutRect(const FloatPoint& location, const FloatSize& size)
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { }
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/
GapRects.h 26 #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_left
    [all...]

Completed in 164 milliseconds