HomeSort by relevance Sort by last modified time
    Searched refs:unite (Results 1 - 25 of 59) 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:blink::GapRects
43 result.unite(m_center);
44 result.unite(m_right);
RenderOverflow.h 57 void addContentsVisualOverflow(const LayoutRect& rect) { m_contentsVisualOverflow.unite(rect); }
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
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...]
FloatBoxExtent.h 78 void unite(const FloatBoxExtent& other) function in class:blink::FloatBoxExtent
86 void unite(const FloatRect& rect) function in class:blink::FloatBoxExtent
IntRect.cpp 84 void IntRect::unite(const IntRect& other) function in class:blink::IntRect
169 result.unite(rects[i]);
LayoutRect.cpp 76 void LayoutRect::unite(const LayoutRect& other) function in class:blink::LayoutRect
138 result.unite(rects[i]);
FloatRect.h 131 void unite(const FloatRect&);
197 c.unite(b);
IntRect.h 133 void unite(const IntRect&);
184 c.unite(b);
Region.h 46 void unite(const Region&);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableHeaderContainer.cpp 75 m_headerRect.unite(m_children[k]->elementRect());
AXTableColumn.cpp 180 m_columnRect.unite(cell->elementRect());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp 141 excludedInterval.unite(OffsetPolygonEdge(edge, FloatSize()).clippedEdgeXRange(y1, y2));
143 excludedInterval.unite(OffsetPolygonEdge(edge, outwardEdgeNormal(edge) * shapeMargin()).clippedEdgeXRange(y1, y2));
144 excludedInterval.unite(OffsetPolygonEdge(edge, inwardEdgeNormal(edge) * shapeMargin()).clippedEdgeXRange(y1, y2));
145 excludedInterval.unite(clippedCircleXRange(edge.vertex1(), shapeMargin(), y1, y2));
146 excludedInterval.unite(clippedCircleXRange(edge.vertex2(), shapeMargin(), y1, y2));
RasterShape.cpp 94 result->intervalAt(marginY).unite(marginIntervalGenerator.intervalAt(marginY));
97 result->intervalAt(y).unite(marginIntervalGenerator.intervalAt(y));
102 result->intervalAt(marginY).unite(marginIntervalGenerator.intervalAt(marginY));
117 m_bounds.unite(IntRect(intervalAtY.x1(), y, intervalAtY.width(), 1));
173 excludedInterval.unite(intervals.intervalAt(y));
ShapeInterval.h 87 void unite(const ShapeInterval<T>& interval) function in class:blink::ShapeInterval
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingRequirementsUpdater.cpp 43 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);
CompositingLayerAssigner.cpp 78 newBoundingRect.unite(bounds);
267 squashingState.boundingRect.unite(layerBounds);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineFlowBox.cpp 63 childRect.unite(child->calculateBoundaries());
RenderSVGPath.cpp 62 strokeBoundingBox.unite(zeroLengthSubpathRect(m_zeroLengthLinecapLocations[i], strokeWidth));
RenderSVGShape.cpp 370 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth)));
394 strokeBoundingBox.unite(strokeBoundingRect);
397 strokeBoundingBox.unite(path().strokeBoundingRect(strokeData));
402 strokeBoundingBox.unite(markerRect(strokeWidth()));
RenderSVGResourceMasker.cpp 160 m_maskContentBoundaries.unite(renderer->localToParentTransform().mapRect(renderer->paintInvalidationRectInLocalCoordinates()));
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.cpp 165 bounds.unite(paintRects[i]);
189 unionRect.unite(m_update.paintRects[i]);
363 inner.unite(existingRect);
365 outer.unite(existingRect);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.h 218 m_horizontalBarDamage.unite(rect);
220 m_verticalBarDamage.unite(rect);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 89 inputUnion.unite(m_inputEffects.at(i)->determineAbsolutePaintRect(inputRect));
109 result.unite(m_inputEffects.at(i)->mapRectRecursive(rect));
134 result.unite(m_inputEffects.at(i)->getSourceRect(sourceRect, sourceClipRect));
167 intPaintRect.unite(m_absolutePaintRect);
498 // FETile, FETurbulence, FEFlood don't have input effects, take the filter region as unite rect.
503 subregion.unite(inputEffect(i)->determineFilterPrimitiveSubregion(flags));
FEDropShadow.cpp 61 result.unite(offsetRect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchDisambiguation.cpp 63 result.unite(node->pixelSnappedBoundingBox());

Completed in 1519 milliseconds

1 2 3