Home
last modified time | relevance | path

Searched refs:oldBounds (Results 1 – 4 of 4) sorted by relevance

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
DResizableDialog.java73 Rectangle oldBounds = loadBounds(); in getInitialSize() local
74 if (oldBounds != null) { in getInitialSize()
76 int width = Math.min(displayBounds.width, Math.max(oldBounds.width, defaultSize.x)); in getInitialSize()
77 int height = Math.min(displayBounds.height, Math.max(oldBounds.height, defaultSize.y)); in getInitialSize()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp1485 const LayoutRect& oldBounds, const LayoutRect& oldOutlineBox, in repaintAfterLayoutIfNeeded() argument
1504 RoundedRect oldRoundedRect = style()->getRoundedBorderFor(oldBounds, v); in repaintAfterLayoutIfNeeded()
1512 …lineBox.location() || (mustRepaintBackgroundOrBorder() && (newBounds != oldBounds || newOutlineBox… in repaintAfterLayoutIfNeeded()
1520 repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds)); in repaintAfterLayoutIfNeeded()
1521 if (newBounds != oldBounds) in repaintAfterLayoutIfNeeded()
1526 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox) in repaintAfterLayoutIfNeeded()
1529 LayoutUnit deltaLeft = newBounds.x() - oldBounds.x(); in repaintAfterLayoutIfNeeded()
1531 …ingContainer(repaintContainer, pixelSnappedIntRect(oldBounds.x(), oldBounds.y(), deltaLeft, oldBou… in repaintAfterLayoutIfNeeded()
1535 LayoutUnit deltaRight = newBounds.maxX() - oldBounds.maxX(); in repaintAfterLayoutIfNeeded()
1537 …repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds.maxX(), newBounds.y(), delta… in repaintAfterLayoutIfNeeded()
[all …]
DRenderFrameSet.cpp446 LayoutRect oldBounds; in layout() local
450 oldBounds = clippedOverflowRectForRepaint(repaintContainer); in layout()
479 repaintUsingContainer(repaintContainer, pixelSnappedIntRect(oldBounds)); in layout()
481 if (newBounds != oldBounds) in layout()
DRenderObject.h826 …const LayoutRect& oldBounds, const LayoutRect& oldOutlineBox, const LayoutRect* newBoundsPtr = 0, …