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

1 2 3

  /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/WebCore/accessibility/
AccessibilityTableHeaderContainer.cpp 95 m_headerRect.unite(m_children[k]->elementRect());
AccessibilityTableColumn.cpp 196 m_columnRect.unite(cell->elementRect());
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 171 objectBoundingBox.unite(current->objectBoundingBox());
172 strokeBoundingBox.unite(current->strokeBoundingBox());
173 repaintBoundingBox.unite(current->repaintRectInLocalCoordinates());
175 objectBoundingBox.unite(transform.mapRect(current->objectBoundingBox()));
176 strokeBoundingBox.unite(transform.mapRect(current->strokeBoundingBox()));
177 repaintBoundingBox.unite(transform.mapRect(current->repaintRectInLocalCoordinates()));
SVGInlineFlowBox.cpp 79 childRect.unite(child->calculateBoundaries());
137 markerRect.unite(fragmentRect);
SVGMarkerLayoutInfo.cpp 95 bounds.unite(markerContent->markerBoundaries(layout.matrix));
RenderSVGResourceFilterPrimitive.cpp 74 // FETurbulence, FEImage and FEFlood don't have input effects, take the filter region as unite rect.
77 uniteRect.unite(determineFilterPrimitiveSubregion(effect->inputEffect(i)));
RenderSVGPath.cpp 324 m_strokeAndMarkerBoundingBox.unite(m_path.strokeBoundingRect(&strokeStyle));
330 m_strokeAndMarkerBoundingBox.unite(markerBounds);
RenderSVGInlineText.cpp 133 boundingBox.unite(box->calculateBoundaries());
RenderSVGResourceMasker.cpp 190 m_maskContentBoundaries.unite(renderer->localToParentTransform().mapRect(renderer->repaintRectInLocalCoordinates()));
  /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.h 114 void unite(const FloatRect&);
203 c.unite(b);
IntRect.h 151 void unite(const IntRect&);
221 c.unite(b);
FloatRect.cpp 82 void FloatRect::unite(const FloatRect& other) function in class:WebCore::FloatRect
  /external/webkit/Source/WebKit/android/jni/
PicturePile.cpp 134 m_webkitInvals[0].unite(inval);
205 inval.unite(m_webkitInvals[i]);
237 overlap.unite(m_pile[overlaps[i]].area);
351 drawArea.unite(pc.prerendered->area);
  /external/webkit/Source/WebKit2/Platform/
Region.h 46 void unite(const Region&);
Region.cpp 432 void Region::unite(const Region& region) function in class:WebKit::Region
437 m_bounds.unite(region.m_bounds);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
ChunkedUpdateDrawingArea.cpp 63 m_dirtyRect.unite(rect);
TiledDrawingArea.cpp 68 m_dirtyRect.unite(rect);
201 it->second.dirtyRect.unite(update.dirtyRect);
DrawingAreaImpl.cpp 97 m_dirtyRegion.unite(dirtyRect);
143 m_dirtyRegion.unite(movedDirtyRegionInScrollRect);
149 m_dirtyRegion.unite(scrollRepaintRegion);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.cpp 76 drawableContentRect.unite(m_replicaDrawTransform.mapRect(localContentRect));
LayerTilerChromium.cpp 218 tile->m_dirtyLayerRect.unite(bound);
258 dirtyLayerRect.unite(tile->m_dirtyLayerRect);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Surface.cpp 155 m_fullContentArea.unite(rect);
246 drawClip.unite(m_layers[i]->drawClip());
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp 62 m_absolutePaintRect.unite(m_inputEffects.at(i)->absolutePaintRect());
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.cpp 73 m_pendingContent.needsDisplayRect.unite(IntRect(rect));

Completed in 812 milliseconds

1 2 3