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

  /external/webkit/Source/WebCore/platform/graphics/
IntRect.cpp 78 void IntRect::unite(const IntRect& other) function in class:WebCore::IntRect
134 result.unite(rects[i]);
FloatRect.cpp 82 void FloatRect::unite(const FloatRect& other) function in class:WebCore::FloatRect
  /external/webkit/Source/WebCore/rendering/
GapRects.h 35 void uniteLeft(const IntRect& r) { m_left.unite(r); }
36 void uniteCenter(const IntRect& r) { m_center.unite(r); }
37 void uniteRight(const IntRect& r) { m_right.unite(r); }
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); } function in struct:WebCore::GapRects
43 result.unite(m_center);
44 result.unite(m_right);
  /external/webkit/Source/WebKit2/Platform/
Region.cpp 432 void Region::unite(const Region& region) function in class:WebKit::Region
437 m_bounds.unite(region.m_bounds);

Completed in 46 milliseconds