HomeSort by relevance Sort by last modified time
    Searched refs:updateRect (Results 1 - 16 of 16) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BView.h 84 virtual void Draw(BRect updateRect) {
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) {
101 dest.top = updateRect.top + yoff
    [all...]
SDL_BWin.h 185 virtual void DrawAsync(BRect updateRect) {
186 SDL_View->DrawAsync(updateRect);
  /external/chromium_org/third_party/WebKit/Source/platform/
HostWindow.h 50 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
56 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 59 status_t setUpdateRectangle(const Rect& updateRect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 66 void Chrome::invalidateContentsAndRootView(const IntRect& updateRect)
68 m_client->invalidateContentsAndRootView(updateRect);
71 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect)
73 m_client->invalidateContentsForSlowScroll(updateRect);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp     [all...]
FrameView.h 330 virtual void scrollContentsSlowPath(const IntRect& updateRect) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPopupMenuImpl.cpp 382 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
384 invalidateContentsAndRootView(updateRect);
ChromeClientImpl.cpp 479 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect)
481 if (updateRect.isEmpty())
483 m_webView->invalidateRect(updateRect);
486 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
488 invalidateContentsAndRootView(updateRect);
WebPagePopupImpl.cpp 105 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE
107 invalidateContentsAndRootView(updateRect);
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 346 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h);
348 glScissor(updateRect.left, mHeight - updateRect.bottom, updateRect.width(),
349 updateRect.height());
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 535 IntRect updateRect = clipRect;
536 updateRect.intersect(scrollViewRect);
549 scrollContentsSlowPath(updateRect);
564 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect)
566 hostWindow()->invalidateContentsForSlowScroll(updateRect);
    [all...]
ScrollView.h 278 virtual void scrollContentsSlowPath(const IntRect& updateRect);
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_old.cpp 636 TRect updateRect = aUpdateRect;
641 Rotate(updateRect);
644 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
647 updateRect.Intersection(targetRect);
648 ClipCopy(target, aBits, updateRect, sourceRect);
dsa_new.cpp 956 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;
1012 Rotate(updateRect);
1015 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1018 updateRect.Intersection(targetRect);
1019 ClipCopy(target, aBits, updateRect, sourceRect.iTl)
    [all...]
dsa.cpp 1071 TRect updateRect = aUpdateRect;
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 416 milliseconds