imageRect        1459 Source/core/html/canvas/CanvasRenderingContext2D.cpp static inline void clipRectsToImageRect(const FloatRect& imageRect, FloatRect* srcRect, FloatRect* dstRect)
imageRect        1461 Source/core/html/canvas/CanvasRenderingContext2D.cpp     if (imageRect.contains(*srcRect))
imageRect        1470 Source/core/html/canvas/CanvasRenderingContext2D.cpp     srcRect->intersect(imageRect);
imageRect         803 Source/core/page/DragController.cpp static PassOwnPtr<DragImage> dragImageForImage(Element* element, Image* image, const IntPoint& dragOrigin, const IntRect& imageRect, IntPoint& dragLocation)
imageRect         810 Source/core/page/DragController.cpp         IntSize originalSize = imageRect.size();
imageRect         811 Source/core/page/DragController.cpp         origin = imageRect.location();
imageRect         813 Source/core/page/DragController.cpp         dragImage->fitToMaxSize(imageRect.size(), maxDragImageSize());
imageRect         894 Source/core/page/DragController.cpp             dragImage = dragImageForImage(element, image, dragOrigin, hitTestResult.imageRect(), dragLocation);
imageRect         104 Source/core/rendering/HitTestResult.h     IntRect imageRect() const;
imageRect        1294 Source/core/rendering/RenderLayerScrollableArea.cpp     IntRect imageRect(resizerCornerRect.maxXMaxYCorner() - cornerResizerSize, cornerResizerSize);
imageRect        1295 Source/core/rendering/RenderLayerScrollableArea.cpp     context->drawImage(resizeCornerImage.get(), imageRect);
imageRect         179 Source/core/rendering/shapes/Shape.cpp     IntRect imageRect = pixelSnappedIntRect(imageR);
imageRect         182 Source/core/rendering/shapes/Shape.cpp     OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(imageRect.size());
imageRect         186 Source/core/rendering/shapes/Shape.cpp         graphicsContext->drawImage(image, IntRect(IntPoint(), imageRect.size()));
imageRect         188 Source/core/rendering/shapes/Shape.cpp         RefPtr<Uint8ClampedArray> pixelArray = imageBuffer->getUnmultipliedImageData(IntRect(IntPoint(), imageRect.size()));
imageRect         192 Source/core/rendering/shapes/Shape.cpp         ASSERT(static_cast<unsigned>(imageRect.width() * imageRect.height() * 4) == pixelArray->length());
imageRect         194 Source/core/rendering/shapes/Shape.cpp         int minBufferY = std::max(0, marginRect.y() - imageRect.y());
imageRect         195 Source/core/rendering/shapes/Shape.cpp         int maxBufferY = std::min(imageRect.height(), marginRect.maxY() - imageRect.y());
imageRect         199 Source/core/rendering/shapes/Shape.cpp             for (int x = 0; x < imageRect.width(); ++x, pixelArrayOffset += 4) {
imageRect         204 Source/core/rendering/shapes/Shape.cpp                 } else if (startX != -1 && (!alphaAboveThreshold || x == imageRect.width() - 1)) {
imageRect         205 Source/core/rendering/shapes/Shape.cpp                     intervals->intervalAt(y + imageRect.y()).unite(IntShapeInterval(startX + imageRect.x(), x + imageRect.x()));
imageRect          65 Source/core/rendering/shapes/Shape.h     static PassOwnPtr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, Length margin);
imageRect         127 Source/core/rendering/shapes/ShapeInfo.cpp         LayoutRect imageRect;
imageRect         128 Source/core/rendering/shapes/ShapeInfo.cpp         getShapeImageAndRect(shapeValue, &m_renderer, m_referenceBoxLogicalSize, image, imageRect);
imageRect         130 Source/core/rendering/shapes/ShapeInfo.cpp         m_shape = Shape::createRasterShape(image, shapeImageThreshold, imageRect, marginRect, writingMode, margin);
imageRect          37 Source/platform/Cursor.cpp     IntRect imageRect = image->rect();
imageRect          38 Source/platform/Cursor.cpp     if (imageRect.contains(specifiedHotSpot))
imageRect          44 Source/platform/Cursor.cpp     if (imageHasIntrinsicHotSpot && imageRect.contains(intrinsicHotSpot))
imageRect          63 Source/platform/graphics/filters/SourceAlpha.cpp     FloatRect imageRect(FloatPoint(), absolutePaintRect().size());
imageRect          65 Source/platform/graphics/filters/SourceAlpha.cpp     filterContext->fillRect(imageRect, Color::black);
imageRect         214 Source/platform/graphics/skia/NativeImageSkia.cpp     SkRect imageRect = SkRect::MakeWH(imageSize.width(), imageSize.height());
imageRect         218 Source/platform/graphics/skia/NativeImageSkia.cpp     scaleTransform.setRectToRect(imageRect, scaledImageRect, SkMatrix::kFill_ScaleToFit);