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

1 2 3 4 5

  /external/webkit/Source/WebCore/svg/graphics/filters/
SVGFilter.cpp 36 m_absoluteFilterRegion = absoluteTransform.mapRect(filterRegion);
SVGFilter.h 46 FloatRect mapLocalRectToAbsoluteRect(const FloatRect& rect) const { return m_absoluteTransform.mapRect(rect); }
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
FullscreenToolView.java 60 matrix.mapRect(displayBounds, photoBounds);
88 photoMatrix.mapRect(dst, src);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
PhotoView.java 85 displayMatrix.mapRect(bounds);
98 matrix.mapRect(bounds);
184 displayMatrix.mapRect(bounds);
RectUtils.java 62 matrix.mapRect(bounds);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGContainer.cpp 136 IntRect paintRectInParent = enclosingIntRect(localToParentTransform().mapRect(repaintRect));
144 IntRect paintRectInParent = enclosingIntRect(localToParentTransform().mapRect(repaintRectInLocalCoordinates()));
SVGRenderSupport.cpp 68 repaintRect = object->localToParentTransform().mapRect(repaintRect);
175 objectBoundingBox.unite(transform.mapRect(current->objectBoundingBox()));
176 strokeBoundingBox.unite(transform.mapRect(current->strokeBoundingBox()));
177 repaintBoundingBox.unite(transform.mapRect(current->repaintRectInLocalCoordinates()));
187 return localTransform.mapRect(localRepaintRect).intersects(paintInfo.rect);
RenderSVGResourceMarker.cpp 82 coordinates = localToParentTransform().mapRect(coordinates);
84 return markerTransformation.mapRect(coordinates);
RenderSVGResourceMasker.cpp 101 FloatRect absoluteTargetRect = absoluteTransform.mapRect(object->repaintRectInLocalCoordinates());
190 m_maskContentBoundaries.unite(renderer->localToParentTransform().mapRect(renderer->repaintRectInLocalCoordinates()));
214 maskRect = transform.mapRect(maskRect);
RenderSVGResourceClipper.cpp 175 FloatRect absoluteTargetRect = absoluteTransform.mapRect(repaintRect);
295 m_clipBoundaries.unite(renderer->localToParentTransform().mapRect(renderer->repaintRectInLocalCoordinates()));
341 return transform.mapRect(m_clipBoundaries);
RenderSVGResourceGradient.cpp 88 FloatRect absoluteTargetRect = absoluteTransform.mapRect(textRootBlock->repaintRectInLocalCoordinates());
125 FloatRect absoluteTargetRect = absoluteTransform.mapRect(targetRect);
  /external/webkit/Source/WebCore/rendering/
PaintInfo.h 93 rect = localToAncestorTransform.inverse().mapRect(rect);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/filters/
StraightenFilter.java 48 matrix.mapRect(bounds);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.cpp 74 FloatRect drawableContentRect = m_drawTransform.mapRect(localContentRect);
76 drawableContentRect.unite(m_replicaDrawTransform.mapRect(localContentRect));
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.h 77 IntRect mapRect(const IntRect&) const;
79 FloatRect mapRect(const FloatRect&) const;
AffineTransform.cpp 304 IntRect AffineTransform::mapRect(const IntRect &rect) const
306 return enclosingIntRect(mapRect(FloatRect(rect)));
309 FloatRect AffineTransform::mapRect(const FloatRect& rect) const
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 127 template<class Transform, class Rect, class Value> static inline Rect mapRect(const Rect& rect, const Transform& transform)
154 template<class T> static inline IntRect mapRect(const IntRect& rect, const T& transform)
156 return mapRect<T, IntRect, int>(rect, transform);
159 template<class T> static inline FloatRect mapRect(const FloatRect& rect, const T& transform)
161 return mapRect<T, FloatRect, double>(rect, transform);
219 IntRect mapRect(const IntRect& rect) const
221 return m_transform.mapRect(rect);
224 FloatRect mapRect(const FloatRect& rect) const
226 return m_transform.mapRect(rect);
503 m_origRect = mapRect(m_rotatedOrigRect, m_rotation)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ShaderProgram.cpp 519 m_contentViewport = m_contentToInvViewMatrix.inverse().mapRect(invViewRect);
592 return renderMatrix.mapRect(srect);
600 return renderMatrix.mapRect(srect);
605 return m_contentToViewMatrix.mapRect(rect);
610 return m_contentToInvViewMatrix.mapRect(rect);
615 return m_contentToInvViewMatrix.inverse().mapRect(rect);
620 FloatRect visibleContentRect = m_contentToViewMatrix.inverse().mapRect(rect);
626 FloatRect visibleContentRect = m_contentToInvViewMatrix.inverse().mapRect(rect);
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ImageViewTouchBase.java 253 public void mapRect(RectF rect) {
254 mSuppMatrix.mapRect(rect);
486 m.mapRect(rect);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
ScrollableLayerAndroid.cpp 67 localTransform.mapRect(&transformedRect);
LayerAndroid.cpp 442 FloatRect clip = m_drawTransform.mapRect(rect);
556 IntRect tr = m_drawTransform.mapRect(r);
558 IntRect rect = m_drawTransform.inverse().mapRect(cr);
598 IntRect tr = m_drawTransform.mapRect(r);
754 FloatRect globalArea = m_drawTransform.mapRect(area);
778 IntRect rect = m_drawTransform.mapRect(area);
789 return m_drawTransform.inverse().mapRect(rect);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp 123 clipRect = p->transform().inverted().mapRect(p->window());
  /frameworks/base/libs/hwui/
Matrix.h 124 void mapRect(Rect& r) const;
Snapshot.cpp 156 transform->mapRect(r);
228 inverse.mapRect(mLocalClip);
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaUtils.cpp 191 canvas.getTotalMatrix().mapRect(&transformedSrc, srcRect);
200 inverseTransform.mapRect(destRect, transformedDest);

Completed in 1342 milliseconds

1 2 3 4 5