Searched refs:targetRect (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.h83 static IntRect calculateImageBufferRect(const FloatRect& targetRect, const AffineTransform& absoluteTransform) argument
85 return enclosingIntRect(absoluteTransform.mapRect(targetRect));
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dcontrol_panel.js15 var targetRect = target.getBoundingClientRect();
19 left: anchorRect.left + anchorRect.width / 2 - targetRect.width / 2,
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.cpp51 static bool areRectsMoreThanFullScreenApart(FocusType, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize);
95 static RectsAlignment alignmentForRects(FocusType type, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
98 if (areRectsMoreThanFullScreenApart(type, curRect, targetRect, viewSize))
101 if (areRectsFullyAligned(type, curRect, targetRect))
104 if (areRectsPartiallyAligned(type, curRect, targetRect))
226 static bool areRectsMoreThanFullScreenApart(FocusType type, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
228 ASSERT(isRectInDirection(type, curRect, targetRect));
232 return curRect.x() - targetRect.maxX() > viewSize.width();
234 return targetRect.x() - curRect.maxX() > viewSize.width();
236 return curRect.y() - targetRect
263 isRectInDirection(FocusType type, const LayoutRect& curRect, const LayoutRect& targetRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRegionTracker.cpp304 SkRect targetRect = rect; local
308 if (!canvasTransform.mapRect(&targetRect))
315 else if (!targetRect.intersect(deviceClipRect))
319 markRectAsOpaque(targetRect);
327 markRectAsOpaque(targetRect);
329 markRectAsNonOpaque(targetRect);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_old.cpp634 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);
H A Ddsa_new.cpp953 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 target
1018 updateRect.Intersection(targetRect);
[all...]
H A Ddsa.cpp1068 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/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp1431 IntRect targetRect(rect);
1441 targetRect.moveBy(ceiledIntPoint(pinchViewport.visibleRect().location()));
1442 targetRect.setSize(pinchViewportSize.shrunkTo(targetRect.size()));
1446 int centeringOffsetX = (targetRect.width() - bounds.width()) / 2;
1447 int centeringOffsetY = (targetRect.height() - bounds.height()) / 2;
1450 bounds.x() - centeringOffsetX - targetRect.x(),
1451 bounds.y() - centeringOffsetY - targetRect.y());
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2249 private void showDisambiguationPopup(Rect targetRect, Bitmap zoomedBitmap) { argument
2251 mPopupZoomer.show(targetRect);

Completed in 2751 milliseconds