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

1 2

  /external/webkit/WebCore/platform/graphics/filters/
FEGaussianBlur.cpp 125 IntRect imageRect(IntPoint(), resultImage()->size());
126 RefPtr<ImageData> tmpImageData = ImageData::create(imageRect.width(), imageRect.height());
129 int stride = 4 * imageRect.width();
131 boxBlur(srcPixelArray, tmpPixelArray, sdx, 4, stride, imageRect.width(), imageRect.height(), isAlphaImage());
132 boxBlur(tmpPixelArray, srcPixelArray, sdy, stride, 4, imageRect.height(), imageRect.width(), isAlphaImage());
135 resultImage()->putPremultipliedImageData(srcImageData.get(), imageRect, IntPoint());
SourceAlpha.cpp 66 FloatRect imageRect(FloatPoint(), filter->sourceImage()->image()->size());
68 filterContext->clipToImageBuffer(imageRect, filter->sourceImage());
69 filterContext->fillRect(imageRect, Color::black, DeviceColorSpace);
FEBlend.cpp 120 IntRect imageRect(IntPoint(), resultImage()->size());
121 RefPtr<ImageData> imageData = ImageData::create(imageRect.width(), imageRect.height());
141 resultImage()->putPremultipliedImageData(imageData.get(), imageRect, IntPoint());
FEColorMatrix.cpp 169 IntRect imageRect(IntPoint(), resultImage()->size());
170 PassRefPtr<ImageData> imageData(resultImage()->getUnmultipliedImageData(imageRect));
191 resultImage()->putUnmultipliedImageData(imageData.get(), imageRect, IntPoint());
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEDisplacementMap.cpp 102 IntRect imageRect(IntPoint(), resultImage()->size());
103 RefPtr<ImageData> imageData = ImageData::create(imageRect.width(), imageRect.height());
111 int stride = imageRect.width() * 4;
112 for (int y = 0; y < imageRect.height(); ++y) {
114 for (int x = 0; x < imageRect.width(); ++x) {
119 if (srcX < 0 || srcX >= imageRect.width() || srcY < 0 || srcY >= imageRect.height())
129 resultImage()->putPremultipliedImageData(imageData.get(), imageRect, IntPoint());
SVGFEMorphology.cpp 98 IntRect imageRect(IntPoint(), resultImage()->size());
101 RefPtr<ImageData> imageData = ImageData::create(imageRect.width(), imageRect.height());
152 resultImage()->putPremultipliedImageData(imageData.get(), imageRect, IntPoint());
  /external/webkit/WebCore/css/
CSSBorderImageValue.cpp 29 CSSBorderImageValue::CSSBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<Rect> imageRect, int horizontalRule, int verticalRule)
31 , m_imageSliceRect(imageRect)
  /external/webkit/WebCore/loader/
CachedImage.h 61 IntRect imageRect(float multiplier) const; // The size of the currently decoded portion of the image.
CachedImage.cpp 195 IntRect CachedImage::imageRect(float multiplier) const
  /external/webkit/WebCore/rendering/
HitTestResult.h 71 IntRect imageRect() const;
HitTestResult.cpp 234 IntRect HitTestResult::imageRect() const
RenderMediaControlsChromium.cpp 65 IntRect imageRect = image->rect();
RenderBox.cpp 839 FloatRect imageRect(tx + x(), rootRect.y(), width(), rootRect.height());
840 page->chrome()->client()->paintCustomHighlight(node(), type, imageRect, rootRect, behindText, false);
842 FloatRect imageRect(tx + x(), ty + y(), width(), height());
843 page->chrome()->client()->paintCustomHighlight(node(), type, imageRect, imageRect, behindText, false);
    [all...]
  /external/webkit/WebCore/platform/mac/
ClipboardMac.mm 405 NSRect imageRect;
407 result = m_frame->snapshotDragImage(m_dragImageElement.get(), &imageRect, &elementRect);
410 loc.x = elementRect.origin.x - imageRect.origin.x + m_dragLoc.x();
411 loc.y = elementRect.origin.y - imageRect.origin.y + m_dragLoc.y();
412 loc.y = imageRect.size.height - loc.y;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 440 Rect imageRect = new Rect(0, 0, width, height);
452 if (faceRect.right > imageRect.right) {
453 faceRect.inset(faceRect.right - imageRect.right,
454 faceRect.right - imageRect.right);
457 if (faceRect.bottom > imageRect.bottom) {
458 faceRect.inset(faceRect.bottom - imageRect.bottom,
459 faceRect.bottom - imageRect.bottom);
462 hv.setup(mImageMatrix, imageRect, faceRect, mCircleCrop,
475 Rect imageRect = new Rect(0, 0, width, height);
493 hv.setup(mImageMatrix, imageRect, cropRect, mCircleCrop
    [all...]
HighlightView.java 367 public void setup(Matrix m, Rect imageRect, RectF cropRect, boolean circle,
375 mImageRect = new RectF(imageRect);
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 559 Rect imageRect = new Rect(0, 0, width, height);
571 if (faceRect.right > imageRect.right) {
572 faceRect.inset(faceRect.right - imageRect.right, faceRect.right - imageRect.right);
575 if (faceRect.bottom > imageRect.bottom) {
576 faceRect.inset(faceRect.bottom - imageRect.bottom, faceRect.bottom - imageRect.bottom);
579 hv.setup(mImageMatrix, imageRect, faceRect, mCircleCrop, mAspectX != 0 && mAspectY != 0);
591 Rect imageRect = new Rect(0, 0, width, height);
610 hv.setup(mImageMatrix, imageRect, cropRect, mCircleCrop, mAspectX != 0 && mAspectY != 0)
    [all...]
HighlightView.java 328 public void setup(Matrix m, Rect imageRect, RectF cropRect, boolean circle, boolean maintainAspectRatio) {
335 mImageRect = new RectF(imageRect);
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp     [all...]
  /external/webkit/WebCore/page/mac/
FrameMac.mm 358 NSImage* Frame::snapshotDragImage(Node* node, NSRect* imageRect, NSRect* elementRect) const
378 if (imageRect)
379 *imageRect = paintingRect;
  /external/webkit/WebCore/page/
DragController.cpp 668 IntRect imageRect = dragSource.imageRect();
669 imageRect.setLocation(m_page->mainFrame()->view()->windowToContents(src->view()->contentsToWindow(imageRect.location())));
670 doImageDrag(element, dragOrigin, dragSource.imageRect(), clipboard, src, m_dragOffset);
Frame.h 284 NSImage* snapshotDragImage(Node*, NSRect* imageRect, NSRect* elementRect) const;
  /external/webkit/WebCore/plugins/
PluginView.cpp     [all...]
  /external/webkit/WebKit/mac/Misc/
WebElementDictionary.mm 208 IntRect rect = _result->imageRect();
  /external/webkit/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 969 QRect imageRect(0, 0, resource.width(), resource.height());
973 painter0.fillRect(imageRect, Qt::white);
982 painter1.fillRect(imageRect, Qt::white);
991 painter2.fillRect(imageRect, Qt::white);

Completed in 351 milliseconds

1 2