/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/webkit/Source/WebKit/efl/WebCoreSupport/ |
ChromeClientEfl.cpp | 486 void ChromeClientEfl::invalidateContents(const IntRect& updateRect, bool immediate) 491 void ChromeClientEfl::invalidateWindow(const IntRect& updateRect, bool immediate) 496 void ChromeClientEfl::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) 500 x = updateRect.x(); 501 y = updateRect.y(); 502 w = updateRect.width(); 503 h = updateRect.height(); 507 void ChromeClientEfl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 509 invalidateContentsAndWindow(updateRect, immediate);
|
/external/webkit/Source/WebCore/platform/ |
HostWindow.h | 42 virtual void invalidateWindow(const IntRect& updateRect, bool immediate) = 0; 45 virtual void invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) = 0; 51 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) = 0;
|
ScrollView.cpp | 678 IntRect updateRect = clipRect; 679 updateRect.intersect(scrollViewRect); 682 hostWindow()->invalidateWindow(updateRect, false /*immediate*/); 697 scrollContentsSlowPath(updateRect); 701 scrollContentsSlowPath(updateRect); 726 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect) 728 hostWindow()->invalidateContentsForSlowScroll(updateRect, false); [all...] |
/external/webkit/Source/WebKit2/UIProcess/win/ |
BackingStoreWin.cpp | 92 IntRect updateRect = updateInfo.updateRects[i]; 93 IntRect srcRect = updateRect; 96 bitmap->paint(graphicsContext, updateRect.location(), srcRect);
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
ChromeClientWinCE.cpp | 238 void ChromeClientWinCE::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) 240 RECT rect = updateRect; 247 void ChromeClientWinCE::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 249 invalidateContentsAndWindow(updateRect, immediate);
|
/external/chromium/chrome/browser/ui/cocoa/ |
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/webkit/Source/WebKit2/UIProcess/mac/ |
BackingStoreMac.mm | 108 IntRect updateRect = updateInfo.updateRects[i]; 109 IntRect srcRect = updateRect; 112 bitmap->paint(graphicsContext, updateRect.location(), srcRect);
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_video.c | 597 SDL_Rect updaterect; local 599 updaterect.x = updaterect.y = 0; 600 updaterect.w = this->screen->w; 601 updaterect.h = this->screen->h; 615 this->UpdateRects(this, 1, &updaterect); 632 this->UpdateRects(this, 1, &updaterect);
|
/external/webkit/Source/WebCore/page/ |
Chrome.cpp | 70 void Chrome::invalidateWindow(const IntRect& updateRect, bool immediate) 72 m_client->invalidateWindow(updateRect, immediate); 75 void Chrome::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) 77 m_client->invalidateContentsAndWindow(updateRect, immediate); 80 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 82 m_client->invalidateContentsForSlowScroll(updateRect, immediate);
|
FrameView.cpp | [all...] |
FrameView.h | 283 virtual void scrollContentsSlowPath(const IntRect& updateRect);
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.cpp | 335 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h); 337 glScissor(updateRect.left, mHeight - updateRect.bottom, updateRect.width(), 338 updateRect.height());
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
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_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.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);
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
Texture.cpp | 152 void Texture::updateSubRect(void* pixels, const IntRect& updateRect) 154 IntRect updateRectSanitized(updateRect);
|
/external/webkit/Source/WebKit/chromium/src/ |
ChromeClientImpl.cpp | 519 void ChromeClientImpl::invalidateContentsAndWindow(const IntRect& updateRect, bool /*immediate*/) 521 if (updateRect.isEmpty()) 527 m_webView->client()->didInvalidateRect(updateRect); 530 m_webView->invalidateRootLayerRect(updateRect); 534 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 537 invalidateContentsAndWindow(updateRect, immediate);
|
WebPopupMenuImpl.cpp | 291 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 293 invalidateContentsAndWindow(updateRect, immediate);
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
ChromeClientGtk.cpp | 388 void ChromeClient::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) 390 GdkRectangle rect = updateRect; 393 if (window && !updateRect.isEmpty()) { 401 void ChromeClient::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) 403 invalidateContentsAndWindow(updateRect, immediate);
|
/external/webkit/Source/WebKit/wince/ |
WebView.cpp | 250 RECT updateRect; 251 if (!GetUpdateRect(hWnd, &updateRect, false)) 257 IntRect clipRect(updateRect);
|
/external/webkit/Source/WebCore/platform/wx/ |
ScrollViewWx.cpp | 139 void ScrollView::platformRepaintContentRectangle(const IntRect& updateRect, bool now) 142 wxRect contentsRect = updateRect;
|
/frameworks/native/include/ui/ |
FramebufferNativeWindow.h | 57 status_t setUpdateRectangle(const Rect& updateRect);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
ChromeClientAndroid.cpp | 314 void ChromeClientAndroid::invalidateContentsAndWindow(const IntRect& updateRect, bool /*immediate*/) 319 void ChromeClientAndroid::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
|