HomeSort by relevance Sort by last modified time
    Searched full:updaterect (Results 1 - 24 of 24) sorted by null

  /external/qemu/distrib/sdl-1.2.12/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 184 virtual void DrawAsync(BRect updateRect) {
185 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 647 IntRect updateRect = clipRect;
648 updateRect.intersect(scrollViewRect);
651 hostWindow()->invalidateWindow(updateRect, false /*immediate*/);
666 scrollContentsSlowPath(updateRect);
670 scrollContentsSlowPath(updateRect);
695 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect)
697 hostWindow()->invalidateContentsForSlowScroll(updateRect, false);
    [all...]
ScrollView.h 323 virtual void scrollContentsSlowPath(const IntRect& updateRect);
  /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.12/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 324 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h);
326 glScissor(updateRect.left, mHeight - updateRect.bottom, updateRect.width(),
327 updateRect.height());
  /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/base/include/ui/
FramebufferNativeWindow.h 58 status_t setUpdateRectangle(const Rect& updateRect);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 311 void ChromeClientAndroid::invalidateContentsAndWindow(const IntRect& updateRect, bool /*immediate*/)
316 void ChromeClientAndroid::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
  /external/webkit/Source/WebKit/android/nav/
WebView.cpp     [all...]

Completed in 955 milliseconds