Searched refs:updateRect (Results 1 - 15 of 15) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_BView.h84 virtual void Draw(BRect updateRect) { argument
88 dest.top = updateRect.top + yoff;
89 dest.left = updateRect.left + xoff;
90 dest.bottom = updateRect.bottom + yoff;
91 dest.right = updateRect.right + xoff;
92 DrawBitmap(image, updateRect, dest);
94 DrawBitmap(image, updateRect, updateRect);
98 virtual void DrawAsync(BRect updateRect) { argument
101 dest.top = updateRect
[all...]
H A DSDL_BWin.h185 virtual void DrawAsync(BRect updateRect) { argument
186 SDL_View->DrawAsync(updateRect);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DHostWindow.h44 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
47 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DChrome.cpp67 void Chrome::invalidateContentsAndRootView(const IntRect& updateRect) argument
69 m_client->invalidateContentsAndRootView(updateRect);
72 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
74 m_client->invalidateContentsForSlowScroll(updateRect);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPopupMenuImpl.cpp378 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
380 invalidateContentsAndRootView(updateRect);
H A DChromeClientImpl.cpp485 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect) argument
487 if (updateRect.isEmpty())
489 m_webView->invalidateRect(updateRect);
492 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
494 invalidateContentsAndRootView(updateRect);
H A DWebPagePopupImpl.cpp110 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE
112 invalidateContentsAndRootView(updateRect); variable
H A DPopupListBox.cpp1036 IntRect updateRect = clipRect; local
1037 updateRect.intersect(convertToContainingWindow(IntRect((shouldPlaceVerticalScrollbarOnLeft() && verticalScrollbar()) ? verticalScrollbar()->width() : 0, 0, visibleWidth(), visibleHeight())));
1038 window->invalidateContentsForSlowScroll(updateRect);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp1291 IntRect updateRect = pixelSnappedIntRect(paintInvalidationRectIncludingNonCompositingDescendants(layer));
1296 updateRect.moveBy(scrollPosition());
1297 IntRect previousRect = updateRect;
1300 updateRect.unite(previousRect);
1301 layer->renderer()->invalidatePaintUsingContainer(repaintContainer, updateRect, InvalidationScroll);
1304 updateRect = contentsToRootView(updateRect);
1305 if (!updateRect.isEmpty())
1306 regionToUpdate.unite(updateRect);
1316 IntRect updateRect local
1327 scrollContentsSlowPath(const IntRect& updateRect) argument
1330 IntRect updateRect = visibleContentRect(); local
[all...]
H A DFrameView.h347 virtual void scrollContentsSlowPath(const IntRect& updateRect) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp544 IntRect updateRect = clipRect; local
545 updateRect.intersect(rectToCopyOnScroll());
558 scrollContentsSlowPath(updateRect);
567 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect) argument
569 hostWindow()->invalidateContentsForSlowScroll(updateRect);
H A DScrollView.h272 virtual void scrollContentsSlowPath(const IntRect& updateRect);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_old.cpp636 TRect updateRect = aUpdateRect; local
641 Rotate(updateRect);
644 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
647 updateRect.Intersection(targetRect);
648 ClipCopy(target, aBits, updateRect, sourceRect);
H A Ddsa_new.cpp956 TRect updateRect = aUpdateRect;
964 Rotate(updateRect);
967 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
970 //updateRect.Intersection(targetRect);
971 ClipCopy(target, aBits, updateRect, sourceRect);
1007 TRect updateRect = aUpdateRect; local
1012 Rotate(updateRect);
1015 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1018 updateRect.Intersection(targetRect);
1019 ClipCopy(target, aBits, updateRect, sourceRec
[all...]
H A Ddsa.cpp1071 TRect updateRect = aUpdateRect; local
1079 Rotate(updateRect);
1082 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1085 //updateRect.Intersection(targetRect);
1086 ClipCopy(target, aBits, updateRect, sourceRect);

Completed in 201 milliseconds