/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
D | SDL_BView.h | 84 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 …]
|
D | SDL_BWin.h | 185 virtual void DrawAsync(BRect updateRect) { in DrawAsync() argument 186 SDL_View->DrawAsync(updateRect); in DrawAsync()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | HostWindow.h | 50 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0; 56 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | Chrome.cpp | 68 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/ |
D | FrameView.cpp | 1474 …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 …]
|
D | FrameView.h | 352 virtual void scrollContentsSlowPath(const IntRect& updateRect);
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | framed_browser_window.mm | 196 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/ |
D | WebPopupMenuImpl.cpp | 348 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) in invalidateContentsForSlowScroll() argument 350 invalidateContentsAndRootView(updateRect); in invalidateContentsForSlowScroll()
|
D | WebPagePopupImpl.cpp | 105 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE in invalidateContentsForSlowScroll() argument 107 invalidateContentsAndRootView(updateRect); in invalidateContentsForSlowScroll()
|
D | ChromeClientImpl.cpp | 484 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/ |
D | ScrollView.cpp | 534 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()
|
D | ScrollView.h | 285 virtual void scrollContentsSlowPath(const IntRect& updateRect);
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
D | dsa_old.cpp | 636 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);
|
D | dsa_new.cpp | 1007 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);
|
D | dsa.cpp | 1071 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/ |
D | framed_browser_window.mm | 218 NSRect updateRect = [frameView frame]; 221 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight; 222 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight; 223 [[self frameView] setNeedsDisplayInRect:updateRect];
|