Searched refs:oldBounds (Results 1 - 5 of 5) sorted by relevance

/external/webkit/WebCore/rendering/
H A DRenderObject.cpp1197 bool RenderObject::repaintAfterLayoutIfNeeded(RenderBoxModelObject* repaintContainer, const IntRect& oldBounds, const IntRect& oldOutlineBox) argument
1212 if (newOutlineBox.location() != oldOutlineBox.location() || (mustRepaintBackgroundOrBorder() && (newBounds != oldBounds || newOutlineBox != oldOutlineBox)))
1220 repaintUsingContainer(repaintContainer, oldBounds);
1221 if (newBounds != oldBounds)
1226 if (newBounds == oldBounds && newOutlineBox == oldOutlineBox)
1229 int deltaLeft = newBounds.x() - oldBounds.x();
1231 repaintUsingContainer(repaintContainer, IntRect(oldBounds.x(), oldBounds.y(), deltaLeft, oldBounds.height()));
1235 int deltaRight = newBounds.right() - oldBounds
[all...]
H A DRenderFrameSet.cpp459 IntRect oldBounds; local
461 oldBounds = absoluteClippedOverflowRect();
510 view()->repaintViewRectangle(oldBounds);
512 if (newBounds != oldBounds)
H A DRenderObject.h617 bool repaintAfterLayoutIfNeeded(RenderBoxModelObject* repaintContainer, const IntRect& oldBounds, const IntRect& oldOutlineBox);
791 LayoutRepainter(RenderObject& object, bool checkForRepaint, const IntRect* oldBounds = 0)
798 m_oldBounds = oldBounds ? *oldBounds : m_object.clippedOverflowRectForRepaint(m_repaintContainer);
/external/webkit/WebKit/android/jni/
H A DWebViewCore.cpp633 WebCore::IntRect oldBounds; local
637 oldBounds = oldFocusNode->getRect();
646 oldBounds = WebCore::IntRect(0,0,0,0);
656 " m_lastFocusedBounds={%d,%d,%d,%d} oldBounds={%d,%d,%d,%d}"
662 oldBounds.x(), oldBounds.y(), oldBounds.width(), oldBounds.height(),
666 if (m_lastFocused == oldFocusNode && m_lastFocusedBounds == oldBounds
675 && m_lastFocusedBounds != oldBounds;
[all...]
/external/webkit/WebKit/chromium/src/
H A DWebViewImpl.cpp1879 IntRect oldBounds = m_suggestionsPopup->boundsRect(); local
1883 if (oldBounds != newBounds) {

Completed in 59 milliseconds