Searched defs:updateRect (Results 1 - 11 of 11) 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/web/
H A DWebPagePopupImpl.cpp105 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE
107 invalidateContentsAndRootView(updateRect); variable
H A DWebPopupMenuImpl.cpp348 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
350 invalidateContentsAndRootView(updateRect);
H A DChromeClientImpl.cpp484 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect) argument
486 if (updateRect.isEmpty())
488 m_webView->invalidateRect(updateRect);
491 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
493 invalidateContentsAndRootView(updateRect);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DChrome.cpp68 void Chrome::invalidateContentsAndRootView(const IntRect& updateRect) argument
70 m_client->invalidateContentsAndRootView(updateRect);
73 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect) argument
75 m_client->invalidateContentsForSlowScroll(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.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);
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...]
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp534 IntRect updateRect = clipRect; local
535 updateRect.intersect(scrollViewRect);
550 scrollContentsSlowPath(updateRect);
554 scrollContentsSlowPath(updateRect);
570 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect) argument
572 hostWindow()->invalidateContentsForSlowScroll(updateRect);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp1474 IntRect updateRect = pixelSnappedIntRect(layer->repainter().repaintRectIncludingNonCompositingDescendants()); local
1480 updateRect.moveBy(scrollPosition());
1481 IntRect previousRect = updateRect;
1483 updateRect.unite(previousRect);
1484 enclosingCompositingLayer->repainter().setBackingNeedsRepaintInRect(updateRect);
1487 updateRect = contentsToRootView(updateRect);
1489 updateRect.intersect(rectToScroll);
1490 if (!updateRect.isEmpty())
1491 regionToUpdate.unite(updateRect);
1502 IntRect updateRect = subRectsToUpdate[i]; local
1520 scrollContentsSlowPath(const IntRect& updateRect) argument
1523 IntRect updateRect = visibleContentRect(); local
[all...]

Completed in 592 milliseconds