Home
last modified time | relevance | path

Searched refs:updateRect (Results 1 – 16 of 16) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
DSDL_BView.h84 virtual void Draw(BRect updateRect) { in Draw() argument
88 dest.top = updateRect.top + yoff; in Draw()
89 dest.left = updateRect.left + xoff; in Draw()
90 dest.bottom = updateRect.bottom + yoff; in Draw()
91 dest.right = updateRect.right + xoff; in Draw()
92 DrawBitmap(image, updateRect, dest); in Draw()
94 DrawBitmap(image, updateRect, updateRect); in Draw()
98 virtual void DrawAsync(BRect updateRect) { in DrawAsync() argument
101 dest.top = updateRect.top + yoff; in DrawAsync()
102 dest.left = updateRect.left + xoff; in DrawAsync()
[all …]
DSDL_BWin.h185 virtual void DrawAsync(BRect updateRect) { in DrawAsync() argument
186 SDL_View->DrawAsync(updateRect); in DrawAsync()
/external/chromium_org/third_party/WebKit/Source/platform/
DHostWindow.h50 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
56 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
/external/chromium_org/third_party/WebKit/Source/core/page/
DChrome.cpp68 void Chrome::invalidateContentsAndRootView(const IntRect& updateRect) in invalidateContentsAndRootView() argument
70 m_client->invalidateContentsAndRootView(updateRect); in invalidateContentsAndRootView()
73 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect) in invalidateContentsForSlowScroll() argument
75 m_client->invalidateContentsForSlowScroll(updateRect); in invalidateContentsForSlowScroll()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp1474 …IntRect updateRect = pixelSnappedIntRect(layer->repainter().repaintRectIncludingNonCompositingDesc… in scrollContentsFastPath() local
1480 updateRect.moveBy(scrollPosition()); in scrollContentsFastPath()
1481 IntRect previousRect = updateRect; in scrollContentsFastPath()
1483 updateRect.unite(previousRect); in scrollContentsFastPath()
1484 enclosingCompositingLayer->repainter().setBackingNeedsRepaintInRect(updateRect); in scrollContentsFastPath()
1487 updateRect = contentsToRootView(updateRect); in scrollContentsFastPath()
1489 updateRect.intersect(rectToScroll); in scrollContentsFastPath()
1490 if (!updateRect.isEmpty()) in scrollContentsFastPath()
1491 regionToUpdate.unite(updateRect); in scrollContentsFastPath()
1502 IntRect updateRect = subRectsToUpdate[i]; in scrollContentsFastPath() local
[all …]
DFrameView.h352 virtual void scrollContentsSlowPath(const IntRect& updateRect);
/external/chromium/chrome/browser/ui/cocoa/
Dframed_browser_window.mm196 NSRect updateRect = [frameView frame];
199 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight;
200 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight;
201 [[self frameView] setNeedsDisplayInRect:updateRect];
/external/chromium_org/third_party/WebKit/Source/web/
DWebPopupMenuImpl.cpp348 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) in invalidateContentsForSlowScroll() argument
350 invalidateContentsAndRootView(updateRect); in invalidateContentsForSlowScroll()
DWebPagePopupImpl.cpp105 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE in invalidateContentsForSlowScroll() argument
107 invalidateContentsAndRootView(updateRect); in invalidateContentsForSlowScroll()
DChromeClientImpl.cpp484 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect) in invalidateContentsAndRootView() argument
486 if (updateRect.isEmpty()) in invalidateContentsAndRootView()
488 m_webView->invalidateRect(updateRect); in invalidateContentsAndRootView()
491 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) in invalidateContentsForSlowScroll() argument
493 invalidateContentsAndRootView(updateRect); in invalidateContentsForSlowScroll()
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollView.cpp534 IntRect updateRect = clipRect; in scrollContents() local
535 updateRect.intersect(scrollViewRect); in scrollContents()
550 scrollContentsSlowPath(updateRect); in scrollContents()
554 scrollContentsSlowPath(updateRect); in scrollContents()
570 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect) in scrollContentsSlowPath() argument
572 hostWindow()->invalidateContentsForSlowScroll(updateRect); in scrollContentsSlowPath()
DScrollView.h285 virtual void scrollContentsSlowPath(const IntRect& updateRect);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
Ddsa_old.cpp636 TRect updateRect = aUpdateRect;
641 Rotate(updateRect);
644 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta…
647 updateRect.Intersection(targetRect);
648 ClipCopy(target, aBits, updateRect, sourceRect);
Ddsa_new.cpp1007 TRect updateRect = aUpdateRect;
1012 Rotate(updateRect);
1015 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta…
1018 updateRect.Intersection(targetRect);
1019 ClipCopy(target, aBits, updateRect, sourceRect.iTl);
Ddsa.cpp1071 TRect updateRect = aUpdateRect;
1079 Rotate(updateRect);
1082 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta…
1086 ClipCopy(target, aBits, updateRect, sourceRect);
/external/chromium_org/chrome/browser/ui/cocoa/
Dframed_browser_window.mm218 NSRect updateRect = [frameView frame];
221 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight;
222 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight;
223 [[self frameView] setNeedsDisplayInRect:updateRect];