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(targetRectMdpi, scaleFactor);
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
ActionBarIconGenerator.java 41 Rectangle targetRect = Util.scaleRectangle(targetRectMdpi, scaleFactor);
48 Util.drawCenterInside(g2, options.sourceImage, targetRect);
NotificationIconGenerator.java 56 Rectangle targetRect = Util.scaleRectangle(targetRectMdpi, scaleFactor);
74 Util.drawCenterInside(g, filled, targetRect);
76 Util.drawCenterInside(g2, options.sourceImage, targetRect);
82 Util.drawCenterInside(g2, options.sourceImage, targetRect);
LauncherIconGenerator.java 58 Rectangle targetRect = Util.scaleRectangle(TARGET_RECT_MDPI, scaleFactor);
72 Util.drawCenterCrop(g2, launcherOptions.sourceImage, targetRect);
74 Util.drawCenterInside(g2, launcherOptions.sourceImage, targetRect);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 789 Rect targetRect = new Rect();
790 targetRect.right = bm.getWidth();
791 targetRect.bottom = bm.getHeight();
793 int deltaw = width - targetRect.right;
794 int deltah = height - targetRect.bottom;
800 scale = width / (float)targetRect.right;
802 scale = height / (float)targetRect.bottom;
804 targetRect.right = (int)(targetRect.right*scale);
805 targetRect.bottom = (int)(targetRect.bottom*scale)
    [all...]

Completed in 427 milliseconds