Home
last modified time | relevance | path

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

/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
DResizeViewWhileHidden.cpp99 RECT newRect = originalRect; in TEST() local
100 ::InflateRect(&newRect, 1, 1); in TEST()
105 webView.resizeTo(newRect.right - newRect.left, newRect.bottom - newRect.top); in TEST()
/external/webkit/Source/WebCore/rendering/
DPaintInfo.h52 …PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceB…
56 , rect(newRect) in context()
DRenderLayer.cpp345 IntRect newRect = renderer()->clippedOverflowRectForRepaint(repaintContainer); in updateLayerPositions() local
353 if (newRect != m_repaintRect) in updateLayerPositions()
354 renderer()->repaintUsingContainer(repaintContainer, newRect); in updateLayerPositions()
356 …epaintAfterLayoutIfNeeded(repaintContainer, m_repaintRect, m_outlineBox, &newRect, &newOutlineBox); in updateLayerPositions()
359 m_repaintRect = newRect; in updateLayerPositions()
1461 IntRect newRect = rect; in scrollTo() local
1500 newRect.setX(rect.x() - diffX); in scrollTo()
1501 newRect.setY(rect.y() - diffY); in scrollTo()
1517 newRect.setX(rect.x() - frameView->scrollX() + frameView->x()); in scrollTo()
1518 newRect.setY(rect.y() - frameView->scrollY() + frameView->y()); in scrollTo()
[all …]
/external/webkit/Source/WebCore/platform/
DScrollView.cpp867 void ScrollView::setFrameRect(const IntRect& newRect) in wheelEvent() argument
871 if (newRect == oldRect) in wheelEvent()
874 Widget::setFrameRect(newRect); in wheelEvent()
1181 IntRect newRect = localRect; in wheelEvent() local
1182 newRect.move(scrollbar->x(), scrollbar->y()); in wheelEvent()
1183 return newRect; in wheelEvent()
1188 IntRect newRect = parentRect; in wheelEvent() local
1190 newRect.move(-scrollbar->x(), -scrollbar->y()); in wheelEvent()
1191 return newRect; in wheelEvent()
/external/chromium/chrome/browser/ui/cocoa/
Dabout_window_controller.mm176 NSRect newRect = oldLegalRect;
177 newRect.size.height = [legalText_ frame].size.height;
178 [legalBlock_ setFrame:newRect];
179 CGFloat legalShift = newRect.size.height - oldLegalRect.size.height;
/external/chromium/chrome/browser/resources/bookmark_manager/js/
Dmain.js715 var newRect = {};
717 newRect[key] = rect[key];
719 return newRect;
/external/webkit/Source/WebCore/page/
DFrameView.cpp360 void FrameView::setFrameRect(const IntRect& newRect) in setFrameRect() argument
363 if (newRect == oldRect) in setFrameRect()
366 ScrollView::setFrameRect(newRect); in setFrameRect()
/external/webkit/Source/WebCore/editing/
DSelectionController.cpp1152 IntRect newRect = localCaretRect(); in recomputeCaretRect() local
1153 if (oldRect == newRect && !m_absCaretBoundsDirty) in recomputeCaretRect()