Searched defs:unite (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h35 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:blink::GapRects
43 result.unite(m_center);
44 result.unite(m_right);
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeInterval.h87 void unite(const ShapeInterval<T>& interval) function in class:blink::ShapeInterval
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBoxExtent.h78 void unite(const FloatBoxExtent& other) function in class:blink::FloatBoxExtent
86 void unite(const FloatRect& rect) function in class:blink::FloatBoxExtent
H A DLayoutRect.cpp76 void LayoutRect::unite(const LayoutRect& other) function in class:blink::LayoutRect
138 result.unite(rects[i]);
H A DIntRect.cpp84 void IntRect::unite(const IntRect& other) function in class:blink::IntRect
169 result.unite(rects[i]);
H A DFloatRect.cpp104 void FloatRect::unite(const FloatRect& other) function in class:blink::FloatRect
164 result.unite(rects[i]);
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingRequirementsUpdater.cpp43 m_boundingBox.unite(bounds);
60 void unite(const OverlapMapContainer& otherContainer) function in class:blink::OverlapMapContainer
63 m_boundingBox.unite(otherContainer.m_boundingBox);
116 m_overlapStack[m_overlapStack.size() - 2].unite(m_overlapStack.last());
298 absoluteDecendantBoundingBox.unite(absoluteChildDecendantBoundingBox);
340 absoluteDecendantBoundingBox.unite(absoluteChildDecendantBoundingBox);

Completed in 695 milliseconds