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

1 2

  /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 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...]
  /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(targetRectMdpi, scaleFactor);
74 Util.drawCenterInside(g, filled, targetRect);
76 Util.drawCenterInside(g2, options.sourceImage, targetRect);
82 Util.drawCenterInside(g2, options.sourceImage, targetRect);
ActionBarIconGenerator.java 41 Rectangle targetRect = Util.scaleRectangle(targetRectMdpi, scaleFactor);
48 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);
TabIconGenerator.java 44 Rectangle targetRect = Util.scaleRectangle(targetRectMdpi, 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);
  /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);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileListFragment.java 54 void onContactSelected(Uri contactUri, Rect targetRect);
213 public void onContactSelected(Uri contactUri, Rect targetRect) {
215 mListener.onContactSelected(contactUri, targetRect);
PhoneFavoriteFragment.java 148 public void onContactSelected(Uri contactUri, Rect targetRect) {
  /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);
  /build/tools/droiddoc/templates-sdk/assets/js/
default.js 369 var targetRect = $target.offset();
370 targetRect.width = $target.width();
371 targetRect.height = $target.height();
374 left: targetRect.left,
375 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
docs.js 392 var targetRect = $target.offset();
393 targetRect.width = $target.width();
394 targetRect.height = $target.height();
397 left: targetRect.left,
398 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
  /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 275 IntRect targetRect(posterX, posterY, posterWidth, posterHeight);
276 canvas->drawBitmapRect(*m_poster, 0, targetRect, 0);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 216 public void onContactSelected(Uri contactUri, Rect targetRect) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java     [all...]

Completed in 640 milliseconds

1 2