HomeSort by relevance Sort by last modified time
    Searched refs:unite (Results 1 - 25 of 54) sorted by null

1 2 3

  /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);
RenderLayerFilterInfo.h 58 void expandDirtySourceRect(const LayoutRect& rect) { m_dirtySourceRect.unite(rect); }
RenderOverflow.h 67 void addContentsVisualOverflow(const LayoutRect& rect) { m_contentsVisualOverflow.unite(rect); }
  /external/chromium_org/third_party/WebKit/Source/web/tests/
RegionTest.cpp 68 r.unite(IntRect(35, 35, 1, 1));
75 r.unite(IntRect(30, 30, 10, 10));
82 r.unite(IntRect(31, 40, 10, 10));
97 r.unite(IntRect(42, 40, 10, 10));
118 r.unite(IntRect(5, 0, 10, 10));
119 r.unite(IntRect(0, 5, 10, 10));
151 r.unite(IntRect(0, 0, 1, 1));
160 r.unite(IntRect(0, 0, 3, 3));
161 r.unite(IntRect(10, 0, 3, 3));
162 r.unite(IntRect(0, 10, 13, 3))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableHeaderContainer.cpp 76 m_headerRect.unite(m_children[k]->elementRect());
AccessibilityTableColumn.cpp 181 m_columnRect.unite(cell->elementRect());
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntRect.cpp 87 void IntRect::unite(const IntRect& other) function in class:WebCore::IntRect
172 result.unite(rects[i]);
LayoutRect.cpp 78 void LayoutRect::unite(const LayoutRect& other) function in class:WebCore::LayoutRect
124 result.unite(rects[i]);
FloatRect.h 134 void unite(const FloatRect&);
196 c.unite(b);
IntRect.h 134 void unite(const IntRect&);
180 c.unite(b);
Region.h 45 void unite(const Region&);
FloatRect.cpp 107 void FloatRect::unite(const FloatRect& other) function in class:WebCore::FloatRect
167 result.unite(rects[i]);
LayoutRect.h 147 void unite(const LayoutRect&);
186 c.unite(b);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEDropShadow.cpp 63 absolutePaintRect.unite(maxEffectRect());
79 result.unite(offsetRect);
FilterEffect.cpp 70 m_absolutePaintRect.unite(m_inputEffects.at(i)->absolutePaintRect());
76 m_absolutePaintRect.unite(enclosingIntRect(m_maxEffectRect));
86 result.unite(m_inputEffects.at(i)->mapRectRecursive(rect));
111 result.unite(m_inputEffects.at(i)->getSourceRect(sourceRect, sourceClipRect));
444 // FETile, FETurbulence, FEFlood don't have input effects, take the filter region as unite rect.
449 subregion.unite(inputEffect(i)->determineFilterPrimitiveSubregion());
FEOffset.cpp 125 paintRect.unite(maxEffectRect());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineFlowBox.cpp 75 childRect.unite(child->calculateBoundaries());
134 markerRect.unite(fragmentRect);
RenderSVGPath.cpp 62 strokeBoundingBox.unite(zeroLengthSubpathRect(m_zeroLengthLinecapLocations[i], strokeWidth));
RenderSVGResourceFilterPrimitive.cpp 63 // FETile, FETurbulence, FEFlood don't have input effects, take the filter region as unite rect.
68 subregion.unite(determineFilterPrimitiveSubregion(effect->inputEffect(i)));
RenderSVGShape.cpp 368 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth)));
392 strokeBoundingBox.unite(strokeBoundingRect);
395 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
400 strokeBoundingBox.unite(markerRect(strokeWidth()));
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.cpp 163 bounds.unite(paintRects[i]);
187 unionRect.unite(m_update.paintRects[i]);
361 inner.unite(existingRect);
363 outer.unite(existingRect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 658 m_topRelevantPaintedRegion.unite(topIntersection);
662 m_bottomRelevantPaintedRegion.unite(bottomIntersection);
664 m_topRelevantPaintedRegion.unite(snappedPaintRect);
666 m_bottomRelevantPaintedRegion.unite(snappedPaintRect);
697 m_relevantUnpaintedRegion.unite(pixelSnappedIntRect(objectPaintRect));
TouchDisambiguation.cpp 65 result.unite(node->pixelSnappedBoundingBox());
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 467 shouldHandleScrollGestureOnMainThreadRegion.unite(box);
481 shouldHandleScrollGestureOnMainThreadRegion.unite(corner);
492 shouldHandleScrollGestureOnMainThreadRegion.unite(pluginView->frameRect());
498 shouldHandleScrollGestureOnMainThreadRegion.unite(computeShouldHandleScrollGestureOnMainThreadRegion(subFrame, offset));
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 81 paintRect.unite(maxEffectRect());

Completed in 795 milliseconds

1 2 3