Searched refs:newBounds (Results 1 - 6 of 6) sorted by relevance
/external/webkit/WebCore/rendering/ |
H A D | RenderObject.cpp | 1203 IntRect newBounds = clippedOverflowRectForRepaint(repaintContainer); 1212 if (newOutlineBox.location() != oldOutlineBox.location() || (mustRepaintBackgroundOrBorder() && (newBounds != oldBounds || newOutlineBox != oldOutlineBox))) 1221 if (newBounds != oldBounds) 1222 repaintUsingContainer(repaintContainer, newBounds); 1226 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox) 1229 int deltaLeft = newBounds.x() - oldBounds.x(); 1233 repaintUsingContainer(repaintContainer, IntRect(newBounds.x(), newBounds.y(), -deltaLeft, newBounds.height())); 1235 int deltaRight = newBounds [all...] |
H A D | RenderFrameSet.cpp | 511 IntRect newBounds = absoluteClippedOverflowRect(); local 512 if (newBounds != oldBounds) 513 view()->repaintViewRectangle(newBounds);
|
/external/webkit/WebKit/android/nav/ |
H A D | WebView.cpp | 497 IntRect newBounds = node->bounds(frame); local 498 IntPoint newCenter = IntPoint(newBounds.x() + (newBounds.width() >> 1), 499 newBounds.y() + (newBounds.height() >> 1)); 501 " bounds=(%d,%d,w=%d,h=%d) newBounds=(%d,%d,w=%d,h=%d)", 504 newBounds.x(), newBounds.y(), newBounds.width(), newBounds [all...] |
H A D | CachedRoot.cpp | 1004 WebCore::IntRect newBounds = mHistory->mNavBounds; local 1007 newBounds.move(offsetX, offsetY); 1008 if (mViewBounds.x() > newBounds.x()) 1010 else if (mViewBounds.right() < newBounds.right()) 1012 if (mViewBounds.y() > newBounds.y()) 1014 else if (mViewBounds.bottom() < newBounds.bottom())
|
/external/webkit/WebKit/android/jni/ |
H A D | WebViewCore.cpp | 1244 const WebCore::IntRect& newBounds = node->getRect(); local 1246 "h=%d)", newBounds.x(), newBounds.y(), 1247 newBounds.width(), newBounds.height()); 1249 && (bounds != newBounds)) { 1255 && (bounds.width() == newBounds.width()) 1256 && (bounds.height() != newBounds.height()); 1263 showRect(newBounds.x(), newBounds [all...] |
/external/webkit/WebKit/chromium/src/ |
H A D | WebViewImpl.cpp | 1881 IntRect newBounds = m_suggestionsPopup->boundsRect(); local 1883 if (oldBounds != newBounds) { 1886 popupMenu->client()->setWindowRect(newBounds);
|
Completed in 275 milliseconds