HomeSort by relevance Sort by last modified time
    Searched defs:targetRect (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperPlatformLayer.h 57 IntRect targetRect;
TextureMapperNode.h 176 inline IntRect targetRect() const
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceGradient.cpp 112 FloatRect& targetRect,
120 targetRect = textRootBlock->repaintRectInLocalCoordinates();
125 FloatRect absoluteTargetRect = absoluteTransform.mapRect(targetRect);
250 FloatRect targetRect;
251 gradientData->gradient->setGradientSpaceTransform(clipToTextMask(context, m_imageBuffer, targetRect, object, boundingBoxMode(), gradientTransform));
254 context->fillRect(targetRect);
  /sdk/assetstudio/src/com/android/assetstudiolib/
MenuIconGenerator.java 43 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
TabIconGenerator.java 44 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
ActionBarIconGenerator.java 42 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
49 Util.drawCenterInside(g2, options.sourceImage, targetRect);
NotificationIconGenerator.java 56 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
74 Util.drawCenterInside(g, filled, targetRect);
76 Util.drawCenterInside(g2, options.sourceImage, targetRect);
82 Util.drawCenterInside(g2, options.sourceImage, targetRect);
LauncherIconGenerator.java 33 'square-web-targetRect': { x: 21, y: 21, w: 470, h: 470 },
34 'circle-web-targetRect': { x: 21, y: 21, w: 470, h: 470 },
35 'square-xhdpi-targetRect': { x: 4, y: 4, w: 88, h: 88 },
36 'circle-xhdpi-targetRect': { x: 4, y: 4, w: 88, h: 88 },
37 'square-hdpi-targetRect': { x: 3, y: 3, w: 66, h: 66 },
38 'circle-hdpi-targetRect': { x: 3, y: 3, w: 66, h: 66 }, <====
39 'square-mdpi-targetRect': { x: 2, y: 2, w: 44, h: 44 },
40 'circle-mdpi-targetRect': { x: 2, y: 2, w: 44, h: 44 },
41 'square-ldpi-targetRect': { x: 1, y: 1, w: 34, h: 34 },
42 'circle-ldpi-targetRect': { x: 1, y: 1, w: 34, h: 34
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 733 Rect targetRect = new Rect();
734 targetRect.right = bm.getWidth();
735 targetRect.bottom = bm.getHeight();
737 int deltaw = width - targetRect.right;
738 int deltah = height - targetRect.bottom;
744 scale = width / (float)targetRect.right;
746 scale = height / (float)targetRect.bottom;
748 targetRect.right = (int)(targetRect.right*scale);
749 targetRect.bottom = (int)(targetRect.bottom*scale)
    [all...]

Completed in 402 milliseconds