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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutRect.cpp 78 void LayoutRect::unite(const LayoutRect& other) function in class:WebCore::LayoutRect
124 result.unite(rects[i]);
IntRect.cpp 87 void IntRect::unite(const IntRect& other) function in class:WebCore::IntRect
172 result.unite(rects[i]);
FloatRect.cpp 107 void FloatRect::unite(const FloatRect& other) function in class:WebCore::FloatRect
167 result.unite(rects[i]);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
GapRects.h 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); }
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);
RenderLayerCompositor.cpp 86 m_boundingBox.unite(bounds);
103 void unite(const OverlapMapContainer& otherContainer) function in class:WebCore::OverlapMapContainer
106 m_boundingBox.unite(otherContainer.m_boundingBox);
167 m_overlapStack[m_overlapStack.size() - 2].unite(m_overlapStack.last());
    [all...]

Completed in 257 milliseconds