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

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.h78 static void clipToImageBuffer(GraphicsContext*, const AffineTransform& absoluteTransform, const FloatRect& targetRect, OwnPtr<ImageBuffer>&, bool safeToClear);
86 static IntRect calculateImageBufferRect(const FloatRect& targetRect, const AffineTransform& absoluteTransform) argument
88 return enclosingIntRect(absoluteTransform.mapRect(targetRect));
H A DSVGRenderingContext.cpp212 bool SVGRenderingContext::createImageBuffer(const FloatRect& targetRect, const AffineTransform& absoluteTransform, OwnPtr<ImageBuffer>& imageBuffer, RenderingMode renderingMode) argument
214 IntRect paintRect = calculateImageBufferRect(targetRect, absoluteTransform);
277 void SVGRenderingContext::clipToImageBuffer(GraphicsContext* context, const AffineTransform& absoluteTransform, const FloatRect& targetRect, OwnPtr<ImageBuffer>& imageBuffer, bool safeToClear) argument
282 FloatRect absoluteTargetRect = calculateImageBufferRect(targetRect, absoluteTransform);
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dui.js57 var targetRect = target.getBoundingClientRect();
59 var x = Math.min(targetRect.left - 10, document.documentElement.clientWidth - popup.offsetWidth);
63 var y = targetRect.top + targetRect.height;
65 y = targetRect.top - popup.offsetHeight;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSoftContextMenu.js58 var targetRect;
63 targetRect = event.currentTarget.getBoundingClientRect();
65 absoluteX = targetRect.left;
66 absoluteY = targetRect.bottom;
92 this._contextMenuElement.style.left = Math.max(0, targetRect.right - this._contextMenuElement.offsetWidth) + "px";
98 this._contextMenuElement.style.top = Math.max(0, targetRect.top - this._contextMenuElement.offsetHeight) + "px";
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.cpp49 static bool areRectsMoreThanFullScreenApart(FocusDirection, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize);
96 static RectsAlignment alignmentForRects(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
99 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize))
102 if (areRectsFullyAligned(direction, curRect, targetRect))
105 if (areRectsPartiallyAligned(direction, curRect, targetRect))
239 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize) argument
241 ASSERT(isRectInDirection(direction, curRect, targetRect));
245 return curRect.x() - targetRect.maxX() > viewSize.width();
247 return targetRect.x() - curRect.maxX() > viewSize.width();
249 return curRect.y() - targetRect
270 isRectInDirection(FocusDirection direction, const LayoutRect& curRect, const LayoutRect& targetRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
H A DOpaqueRegionSkia.cpp281 SkRect targetRect = rect; local
285 if (!canvasTransform.mapRect(&targetRect))
292 else if (!targetRect.intersect(deviceClipRect))
300 markRectAsOpaque(targetRect);
302 markRectAsNonOpaque(targetRect);
/external/chromium/chrome/browser/resources/bookmark_manager/js/
H A Dmain.js770 * @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 -
/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/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2387 private void showDisambiguationPopup(Rect targetRect, Bitmap zoomedBitmap) { argument
2389 mPopupZoomer.show(targetRect);

Completed in 279 milliseconds