Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DRenderObject.cpp1203 IntRect newBounds = clippedOverflowRectForRepaint(repaintContainer); in repaintAfterLayoutIfNeeded() local
1212 …n() != oldOutlineBox.location() || (mustRepaintBackgroundOrBorder() && (newBounds != oldBounds || … in repaintAfterLayoutIfNeeded()
1221 if (newBounds != oldBounds) in repaintAfterLayoutIfNeeded()
1222 repaintUsingContainer(repaintContainer, newBounds); in repaintAfterLayoutIfNeeded()
1226 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox) in repaintAfterLayoutIfNeeded()
1229 int deltaLeft = newBounds.x() - oldBounds.x(); in repaintAfterLayoutIfNeeded()
1233 …repaintUsingContainer(repaintContainer, IntRect(newBounds.x(), newBounds.y(), -deltaLeft, newBound… in repaintAfterLayoutIfNeeded()
1235 int deltaRight = newBounds.right() - oldBounds.right(); in repaintAfterLayoutIfNeeded()
1237 …ingContainer(repaintContainer, IntRect(oldBounds.right(), newBounds.y(), deltaRight, newBounds.hei… in repaintAfterLayoutIfNeeded()
1239 …repaintUsingContainer(repaintContainer, IntRect(newBounds.right(), oldBounds.y(), -deltaRight, old… in repaintAfterLayoutIfNeeded()
[all …]
DRenderFrameSet.cpp511 IntRect newBounds = absoluteClippedOverflowRect(); in layout() local
512 if (newBounds != oldBounds) in layout()
513 view()->repaintViewRectangle(newBounds); in layout()
/external/webkit/WebKit/android/nav/
DWebView.cpp497 IntRect newBounds = node->bounds(frame); in fixCursor() local
498 IntPoint newCenter = IntPoint(newBounds.x() + (newBounds.width() >> 1), in fixCursor()
499 newBounds.y() + (newBounds.height() >> 1)); in fixCursor()
504 newBounds.x(), newBounds.y(), newBounds.width(), newBounds.height()); in fixCursor()
509 if (abs(bounds.x() - newBounds.x()) > 4) in fixCursor()
511 if (abs(bounds.y() - newBounds.y()) > 4) in fixCursor()
513 if (abs(bounds.right() - newBounds.right()) > 4) in fixCursor()
515 if (abs(bounds.bottom() - newBounds.bottom()) > 4) in fixCursor()
DCachedRoot.cpp1004 WebCore::IntRect newBounds = mHistory->mNavBounds; in innerMove() local
1007 newBounds.move(offsetX, offsetY); in innerMove()
1008 if (mViewBounds.x() > newBounds.x()) in innerMove()
1010 else if (mViewBounds.right() < newBounds.right()) in innerMove()
1012 if (mViewBounds.y() > newBounds.y()) in innerMove()
1014 else if (mViewBounds.bottom() < newBounds.bottom()) in innerMove()
/external/webkit/WebKit/android/jni/
DWebViewCore.cpp1244 const WebCore::IntRect& newBounds = node->getRect(); in setSizeScreenWidthAndScale() local
1246 "h=%d)", newBounds.x(), newBounds.y(), in setSizeScreenWidthAndScale()
1247 newBounds.width(), newBounds.height()); in setSizeScreenWidthAndScale()
1249 && (bounds != newBounds)) { in setSizeScreenWidthAndScale()
1255 && (bounds.width() == newBounds.width()) in setSizeScreenWidthAndScale()
1256 && (bounds.height() != newBounds.height()); in setSizeScreenWidthAndScale()
1263 showRect(newBounds.x(), newBounds.y(), newBounds.width(), in setSizeScreenWidthAndScale()
1264 newBounds.height(), view->contentsWidth(), in setSizeScreenWidthAndScale()
/external/webkit/WebKit/chromium/src/
DWebViewImpl.cpp1881 IntRect newBounds = m_suggestionsPopup->boundsRect(); in refreshSuggestionsPopup() local
1883 if (oldBounds != newBounds) { in refreshSuggestionsPopup()
1886 popupMenu->client()->setWindowRect(newBounds); in refreshSuggestionsPopup()