Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/
DScrollView.cpp678 void ScrollView::setFrameRect(const IntRect& newRect) in wheelEvent() argument
682 if (newRect == oldRect) in wheelEvent()
685 Widget::setFrameRect(newRect); in wheelEvent()
690 if (newRect.width() != oldRect.width() || newRect.height() != oldRect.height()) { in wheelEvent()
850 IntRect newRect = localRect; in wheelEvent() local
851 newRect.move(scrollbar->x(), scrollbar->y()); in wheelEvent()
852 return newRect; in wheelEvent()
857 IntRect newRect = parentRect; in wheelEvent() local
859 newRect.move(-scrollbar->x(), -scrollbar->y()); in wheelEvent()
860 return newRect; in wheelEvent()
/external/webkit/WebCore/rendering/
DRenderLayer.cpp283 IntRect newRect = renderer()->clippedOverflowRectForRepaint(repaintContainer); in updateLayerPositions() local
289 if (newRect != m_repaintRect) in updateLayerPositions()
290 renderer()->repaintUsingContainer(repaintContainer, newRect); in updateLayerPositions()
295 m_repaintRect = newRect; in updateLayerPositions()
1277 IntRect newRect = rect; in scrollRectToVisible() local
1316 newRect.setX(rect.x() - diffX); in scrollRectToVisible()
1317 newRect.setY(rect.y() - diffY); in scrollRectToVisible()
1333 newRect.setX(rect.x() - frameView->scrollX() + frameView->x()); in scrollRectToVisible()
1334 newRect.setY(rect.y() - frameView->scrollY() + frameView->y()); in scrollRectToVisible()
1347 parentLayer->scrollRectToVisible(newRect, scrollToAnchor, alignX, alignY); in scrollRectToVisible()
DRenderObject.h484 …PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceB…
488 , rect(newRect) in context()
/external/webkit/WebCore/editing/
DSelectionController.cpp934 IntRect newRect = localCaretRect(); in recomputeCaretRect() local
935 if (oldRect == newRect && !m_absCaretBoundsDirty) in recomputeCaretRect()