intersection      241 Source/core/editing/Caret.cpp     LayoutRect caret = intersection(drawingRect, clipRect);
intersection     1720 Source/core/editing/FrameSelection.cpp     return clipToVisibleContent ? intersection(selectionRect, view->visibleContentRect()) : selectionRect;
intersection     2351 Source/core/frame/FrameView.cpp     return intersection(clipRect, windowClipRect());
intersection       31 Source/core/frame/ImageBitmap.cpp     IntRect intersectRect = intersection(IntRect(IntPoint(), image->size()), cropRect);
intersection       45 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, IntRect(0, 0, image->width(), image->height()));
intersection       63 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, videoRect);
intersection       88 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, IntRect(IntPoint(), canvas->size()));
intersection      100 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, IntRect(IntPoint(), data->size()));
intersection      121 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, oldBitmapRect);
intersection      139 Source/core/frame/ImageBitmap.cpp     IntRect srcRect = intersection(cropRect, IntRect(IntPoint(), image->size()));
intersection      211 Source/core/frame/ImageBitmap.cpp     FloatRect intersectRect = intersection(m_bitmapRect, *srcRect);
intersection      757 Source/core/page/FocusController.cpp     LayoutRect intersectionRect = intersection(candidate.rect, closest.rect);
intersection      328 Source/core/page/TouchAdjustment.cpp     IntRect intersection = rect;
intersection      329 Source/core/page/TouchAdjustment.cpp     intersection.intersect(touchArea);
intersection      332 Source/core/page/TouchAdjustment.cpp     return rect.size().area() / (float)intersection.size().area();
intersection       83 Source/core/rendering/ClipRect.h inline ClipRect intersection(const ClipRect& a, const ClipRect& b)
intersection      933 Source/core/rendering/RenderBox.cpp     paintRect = intersection(paintRect, clipRect);
intersection     1367 Source/core/rendering/RenderLayer.cpp     return intersection(transparencyClipBox(this, rootLayer, PaintingTransparencyClipBox, RootOfTransparencyClipBox, subPixelAccumulation, paintBehavior), paintDirtyRect);
intersection      293 Source/core/rendering/RenderLayerClipper.cpp             clipRects.setOverflowClipRect(intersection(newOverflowClip, clipRects.overflowClipRect()));
intersection      295 Source/core/rendering/RenderLayerClipper.cpp                 clipRects.setPosClipRect(intersection(newOverflowClip, clipRects.posClipRect()));
intersection      299 Source/core/rendering/RenderLayerClipper.cpp             clipRects.setPosClipRect(intersection(newPosClip, clipRects.posClipRect()));
intersection      300 Source/core/rendering/RenderLayerClipper.cpp             clipRects.setOverflowClipRect(intersection(newPosClip, clipRects.overflowClipRect()));
intersection      301 Source/core/rendering/RenderLayerClipper.cpp             clipRects.setFixedClipRect(intersection(newPosClip, clipRects.fixedClipRect()));
intersection      282 Source/core/rendering/RenderMenuList.cpp     return intersection(outerBox, innerBox);
intersection      438 Source/core/rendering/RenderView.cpp         LayoutRect r = intersection(ur, vr);
intersection       64 Source/core/rendering/ScrollAlignment.cpp     LayoutUnit intersectWidth = intersection(visibleRect, exposeRectX).width();
intersection      106 Source/core/rendering/ScrollAlignment.cpp     LayoutUnit intersectHeight = intersection(visibleRect, exposeRectY).height();
intersection      132 Source/core/rendering/shapes/PolygonShape.cpp     FloatPoint intersection;
intersection      140 Source/core/rendering/shapes/PolygonShape.cpp         if (prevOffsetEdge.intersection(thisOffsetEdge, intersection))
intersection      141 Source/core/rendering/shapes/PolygonShape.cpp             marginVertices->append(intersection);
intersection      162 Source/core/rendering/shapes/PolygonShape.cpp static inline bool getVertexIntersectionVertices(const EdgeIntersection& intersection, FloatPoint& prevVertex, FloatPoint& thisVertex, FloatPoint& nextVertex)
intersection      164 Source/core/rendering/shapes/PolygonShape.cpp     if (intersection.type != VertexMinY && intersection.type != VertexMaxY)
intersection      167 Source/core/rendering/shapes/PolygonShape.cpp     ASSERT(intersection.edge && intersection.edge->polygon());
intersection      168 Source/core/rendering/shapes/PolygonShape.cpp     const FloatPolygon& polygon = *(intersection.edge->polygon());
intersection      169 Source/core/rendering/shapes/PolygonShape.cpp     const FloatPolygonEdge& thisEdge = *(intersection.edge);
intersection      171 Source/core/rendering/shapes/PolygonShape.cpp     if ((intersection.type == VertexMinY && (thisEdge.vertex1().y() < thisEdge.vertex2().y()))
intersection      172 Source/core/rendering/shapes/PolygonShape.cpp         || (intersection.type == VertexMaxY && (thisEdge.vertex1().y() > thisEdge.vertex2().y()))) {
intersection      209 Source/core/rendering/shapes/PolygonShape.cpp     EdgeIntersection intersection;
intersection      211 Source/core/rendering/shapes/PolygonShape.cpp         if (computeXIntersection(edges[i], y, intersection) && intersection.type != VertexYBoth)
intersection      212 Source/core/rendering/shapes/PolygonShape.cpp             intersections.append(intersection);
intersection      292 Source/core/rendering/shapes/PolygonShape.cpp     EdgeIntersection intersection;
intersection      299 Source/core/rendering/shapes/PolygonShape.cpp             computeXIntersection(edge, y1, intersection);
intersection      300 Source/core/rendering/shapes/PolygonShape.cpp             x1 = intersection.point.x();
intersection      306 Source/core/rendering/shapes/PolygonShape.cpp             computeXIntersection(edge, y2, intersection);
intersection      307 Source/core/rendering/shapes/PolygonShape.cpp             x2 = intersection.point.x();
intersection      109 Source/platform/geometry/FloatPoint.cpp bool findIntersection(const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& d1, const FloatPoint& d2, FloatPoint& intersection)
intersection      123 Source/platform/geometry/FloatPoint.cpp     intersection.setX(p1.x() + param * pxLength);
intersection      124 Source/platform/geometry/FloatPoint.cpp     intersection.setY(p1.y() + param * pyLength);
intersection      234 Source/platform/geometry/FloatPoint.h PLATFORM_EXPORT bool findIntersection(const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& d1, const FloatPoint& d2, FloatPoint& intersection);
intersection       96 Source/platform/geometry/FloatPolygon.h     bool intersection(const VertexPair&, FloatPoint&) const;
intersection      189 Source/platform/geometry/FloatRect.h inline FloatRect intersection(const FloatRect& a, const FloatRect& b)
intersection      168 Source/platform/geometry/IntRect.h inline IntRect intersection(const IntRect& a, const IntRect& b)
intersection      177 Source/platform/geometry/LayoutRect.h inline LayoutRect intersection(const LayoutRect& a, const LayoutRect& b)
intersection      252 Source/platform/graphics/filters/FEComposite.cpp         affectedRect = intersection(input1Rect, inputEffect(0)->determineAbsolutePaintRect(input1Rect));
intersection      276 Source/platform/graphics/filters/FEComposite.cpp                 affectedRect = intersection(input1Rect, input0Rect);
intersection      219 Source/platform/scroll/ScrollbarTheme.cpp         context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
intersection      221 Source/platform/scroll/ScrollbarTheme.cpp         context->fillRect(intersection(verticalOverhangRect, dirtyRect));
intersection      505 Source/web/ChromeClientImpl.cpp             m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
intersection      337 Source/web/PopupContainer.cpp     IntRect r = intersection(rect, frameRect());
intersection      351 Source/web/PopupListBox.cpp     IntRect r = intersection(rect, frameRect());
intersection      131 Source/web/ValidationMessageClientImpl.cpp     newAnchorRect = intersection(currentView()->convertToRootView(currentView()->boundsRect()), newAnchorRect);
intersection      102 Source/web/WebPagePopupImpl.cpp         m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));
intersection      654 Source/web/WebPluginContainerImpl.cpp     context->fillRect(intersection(horizontalOverhangArea, dirtyRect));
intersection      655 Source/web/WebPluginContainerImpl.cpp     context->fillRect(intersection(verticalOverhangArea, dirtyRect));
intersection      156 Source/web/painting/PaintAggregator.cpp     return intersection(scrollRect, damagedRect);
intersection      300 Source/web/painting/PaintAggregator.cpp     result = intersection(m_update.scrollRect, result);
intersection     5366 Source/web/tests/WebFrameTest.cpp         WebCore::IntRect repaintRect = WebCore::intersection(WebCore::IntRect(0, 0, 200, 300), WebCore::unionRect(frameView->trackedRepaintRects()));
intersection     5373 Source/web/tests/WebFrameTest.cpp         repaintRect = WebCore::intersection(WebCore::IntRect(0, 0, 300, 300), WebCore::unionRect(frameView->trackedRepaintRects()));