Searched refs:newBounds (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderElement.cpp1172 LayoutRect newBounds = newBoundsPtr ? *newBoundsPtr : clippedOverflowRectForRepaint(repaintContainer);
1183 if (newOutlineBox.location() != oldOutlineBox.location() || (mustRepaintBackgroundOrBorder(*this) && (newBounds != oldBounds || newOutlineBox != oldOutlineBox)))
1192 if (newBounds != oldBounds)
1193 repaintUsingContainer(repaintContainer, newBounds);
1197 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox)
1200 LayoutUnit deltaLeft = newBounds.x() - oldBounds.x();
1204 repaintUsingContainer(repaintContainer, LayoutRect(newBounds.x(), newBounds.y(), -deltaLeft, newBounds.height()));
1206 LayoutUnit deltaRight = newBounds
[all...]
H A DRenderFrameSet.cpp487 LayoutRect newBounds = clippedOverflowRectForRepaint(repaintContainer); local
488 if (newBounds != oldBounds)
489 repaintUsingContainer(repaintContainer, pixelSnappedIntRect(newBounds));
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DGraphicsView.py118 newBounds = change.objectForKey_(NSKeyValueChangeNewKey)
120 updateRect = NSUnionRect(newBounds, oldBounds)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DGraphicsView.py118 newBounds = change.objectForKey_(NSKeyValueChangeNewKey)
120 updateRect = NSUnionRect(newBounds, oldBounds)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/CocoaBindings/GraphicsBindings/
H A DGraphicsView.py118 newBounds = change.objectForKey_(NSKeyValueChangeNewKey)
120 updateRect = NSUnionRect(newBounds, oldBounds)
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKWebView.mm2169 CGRect newBounds = self.bounds;
2170 WebCore::FloatSize newMinimumLayoutSize = activeMinimumLayoutSize(self, newBounds);
2172 WebCore::FloatSize newMaximumUnobscuredSize = activeMaximumUnobscuredSize(self, newBounds);
2176 if (CGRectEqualToRect(oldBounds, newBounds)
2209 CGRect futureUnobscuredRectInSelfCoordinates = UIEdgeInsetsInsetRect(newBounds, _obscuredInsets);
2219 CGFloat maxHorizontalOffset = futureContentSizeInSelfCoordinates.width - newBounds.size.width + _obscuredInsets.right;
2221 CGFloat maxVerticalOffset = futureContentSizeInSelfCoordinates.height - newBounds.size.height + _obscuredInsets.bottom;
2237 CGRect visibleRectInContentCoordinates = [self convertRect:newBounds toView:_contentView.get()];
2242 drawingArea->setSize(WebCore::IntSize(newBounds.size), WebCore::IntSize(), WebCore::IntSize());

Completed in 192 milliseconds