/build/tools/droiddoc/templates-ds/assets/design/ |
default.js | 146 var targetRect = $target.offset(); 147 targetRect.width = $target.width(); 148 targetRect.height = $target.height(); 151 left: targetRect.left, 152 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
|
/build/tools/droiddoc/templates-pdk/assets/design/ |
default.js | 146 var targetRect = $target.offset(); 147 targetRect.width = $target.width(); 148 targetRect.height = $target.height(); 151 left: targetRect.left, 152 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
|
/build/tools/droiddoc/templates-sac/assets/design/ |
default.js | 146 var targetRect = $target.offset(); 147 targetRect.width = $target.width(); 148 targetRect.height = $target.height(); 151 left: targetRect.left, 152 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
|
/build/tools/droiddoc/templates-sdk/assets/design/ |
default.js | 146 var targetRect = $target.offset(); 147 targetRect.width = $target.width(); 148 targetRect.height = $target.height(); 151 left: targetRect.left, 152 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN
|
/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/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...] |
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 813 Rect targetRect = new Rect(); 814 targetRect.right = bm.getWidth(); 815 targetRect.bottom = bm.getHeight(); 817 int deltaw = width - targetRect.right; 818 int deltah = height - targetRect.bottom; 824 scale = width / (float)targetRect.right; 826 scale = height / (float)targetRect.bottom; 828 targetRect.right = (int)(targetRect.right*scale); 829 targetRect.bottom = (int)(targetRect.bottom*scale) [all...] |
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
TextureMapperPlatformLayer.h | 57 IntRect targetRect;
|
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(),
|
TextureMapperNode.h | 176 inline IntRect targetRect() const
|
/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...] |
/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);
|
/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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
dsa_new.cpp | 577 //targetrect shall no change 953 TRect targetRect = TRect(TPoint(0, 0), SwSize()); 967 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0)) 969 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 970 //updateRect.Intersection(targetRect); 1005 TRect targetRect = Rect(); 1015 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0)) 1017 sourceRect.Intersection(targetRect); //so source always smaller or equal than targe [all...] |
dsa_old.cpp | 634 TRect targetRect = HwRect(); 644 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0)) 646 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 647 updateRect.Intersection(targetRect);
|
dsa.cpp | 1068 TRect targetRect = TRect(TPoint(0, 0), SwSize()); 1082 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0)) 1084 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 1085 //updateRect.Intersection(targetRect);
|
/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/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/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));
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupDetailFragment.java | 217 public void onContactSelected(Uri contactUri, Rect targetRect) {
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
MediaPlayerPrivateAndroid.cpp | 298 IntRect targetRect(posterX, posterY, posterWidth, posterHeight); 299 ctxt->platformContext()->drawBitmapRect(*m_poster, 0, targetRect);
|
/packages/apps/Dialer/src/com/android/dialer/list/ |
PhoneFavoriteFragment.java | 155 public void onContactSelected(Uri contactUri, Rect targetRect) {
|
/build/tools/droiddoc/templates-ds/assets/js/ |
docs.js | 447 var targetRect = $target.offset(); 448 targetRect.width = $target.width(); 449 targetRect.height = $target.height(); 452 left: targetRect.left, 453 top: targetRect.top + targetRect.height + TOOLTIP_MARGIN [all...] |