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

  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperPlatformLayer.h 57 IntRect targetRect;
TextureMapperNode.h 176 inline IntRect targetRect() const
TextureMapperNode.cpp 475 opt.scissorRect = options.targetRect;
484 textureMapper->paintToTarget(*m_surface.get(), options.viewportSize, options.transform, options.opacity * m_state.opacity, options.targetRect);
514 const IntRect rect = m_layerType == ClipLayer ? entireRect() : targetRect();
570 targetRect(),
  /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...]
  /sdk/assetstudio/src/com/android/assetstudiolib/
MenuIconGenerator.java 43 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
51 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);
ActionBarIconGenerator.java 42 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
49 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...]
TabIconGenerator.java 44 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
51 Util.drawCenterInside(g2, options.sourceImage, targetRect);
  /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);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileListFragment.java 52 public void onContactSelected(Uri contactUri, Rect targetRect);
170 public void onContactSelected(Uri contactUri, Rect targetRect) {
172 mListener.onContactSelected(contactUri, targetRect);
PhoneFavoriteFragment.java 135 public void onContactSelected(Uri contactUri, Rect targetRect) {
ContactTileAdapter.java 672 public void onContactSelected(Uri contactUri, Rect targetRect);
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 491 IntRect targetRect(frameRect());
492 targetRect.intersects(rect);
496 r.origin.x = targetRect.x() - frameRect().x();
497 r.origin.y = targetRect.y() - frameRect().y();
498 r.size.width = targetRect.width();
499 r.size.height = targetRect.height();
528 painter->drawPixmap(targetRect.x(), targetRect.y(), m_pixmap,
529 targetRect.x() - frameRect().x(), targetRect.y() - frameRect().y(), targetRect.width(), targetRect.height())
    [all...]
  /external/webkit/Source/WebCore/page/
SpatialNavigation.cpp 51 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize);
98 static RectsAlignment alignmentForRects(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize)
101 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize))
104 if (areRectsFullyAligned(direction, curRect, targetRect))
107 if (areRectsPartiallyAligned(direction, curRect, targetRect))
243 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize)
245 ASSERT(isRectInDirection(direction, curRect, targetRect));
249 return curRect.x() - targetRect.maxX() > viewSize.width();
251 return targetRect.x() - curRect.maxX() > viewSize.width();
253 return curRect.y() - targetRect.maxY() > viewSize.height()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 56 virtual void drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture);
TextureMapperQt.cpp 135 void TextureMapperQt::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture)
160 painter->drawPixmap(targetRect, pixmap, textureQt.sourceRect());
  /external/webkit/Source/WebCore/svg/
SVGFEImageElement.cpp 165 IntRect targetRect = enclosingIntRect(renderer->objectBoundingBox());
166 m_targetImage = ImageBuffer::create(targetRect.size(), ColorSpaceLinearRGB);
  /external/webkit/Source/WebCore/platform/gtk/
WidgetRenderingContext.cpp 69 WidgetRenderingContext::WidgetRenderingContext(GraphicsContext* graphicsContext, const IntRect& targetRect)
71 , m_targetRect(targetRect)
80 m_paintRect = graphicsContext->getCTM().mapRect(targetRect);
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.cpp 363 void TextureMapperGL::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& modelViewMatrix, float opacity, const BitmapTexture* maskTexture)
394 targetRect.width(), 0, 0, 0,
395 0, targetRect.height(), 0, 0,
397 targetRect.x(), targetRect.y(), 0, 1));
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 770 * @param {ClientRect} targetRect The drop target rect
774 showDropOverlay_: function(targetRect, overlayType) {
779 overlay.style.top = targetRect.top + 'px';
780 overlay.style.height = targetRect.height + 'px';
785 overlay.style.width = targetRect.width + 'px';
786 overlay.style.left = targetRect.left + 'px';
792 overlay.style.top = targetRect.top - overlayRect.height / 2 + 'px';
794 overlay.style.top = targetRect.top + targetRect.height -
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 269 IntRect targetRect(posterX, posterY, posterWidth, posterHeight);
270 canvas->drawBitmapRect(*m_poster, 0, targetRect, 0);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 210 public void onContactSelected(Uri contactUri, Rect targetRect) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java     [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.cpp 336 options.targetRect = view->frameRect();
    [all...]

Completed in 4031 milliseconds