HomeSort by relevance Sort by last modified time
    Searched refs:unite (Results 1 - 25 of 62) 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/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/android/
GLWebViewState.cpp 227 m_frameworkInval.unite(rect);
228 XLOG("intermediate invalRect(%d, %d, %d, %d) after unite with rect %d %d %d %d", m_frameworkInval.x(),
352 m_frameworkLayersInval.unite(inflatedRect);
503 inval.unite(m_frameworkLayersInval);
android_graphics.cpp 109 inval->unite(m_lastBounds);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.cpp 76 drawableContentRect.unite(m_replicaDrawTransform.mapRect(localContentRect));
  /external/webkit/Source/WebKit/android/nav/
CachedNode.cpp 71 inner->unite(*ring);
99 bounds.unite(mCursorRing[partIndex]);
  /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 611 milliseconds

1 2 3