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

  /external/webkit/WebCore/platform/chromium/
FramelessScrollView.cpp 48 IntRect dirtyRect = rect;
49 dirtyRect.move(scrollbar->x(), scrollbar->y());
50 invalidateRect(dirtyRect);
  /external/webkit/WebKit/android/plugins/
ANPSurface_npapi.h 34 to be written to. The dirtyRect param specifies which portion of the
35 bitmap will be written to. If the dirtyRect is NULL then the entire
40 bool (*lock)(JNIEnv* env, jobject surface, ANPBitmap* bitmap, ANPRectI* dirtyRect);
43 those inside the dirtyRect are written to the screen.
ANPSurfaceInterface.cpp 94 static bool anp_lock(JNIEnv* env, jobject surfaceView, ANPBitmap* bitmap, ANPRectI* dirtyRect) {
106 if (dirtyRect) {
107 Rect rect(dirtyRect->left, dirtyRect->top, dirtyRect->right, dirtyRect->bottom);
123 if (dirtyRect) {
125 dirtyRect->left = dirtyBounds.left;
126 dirtyRect->right = dirtyBounds.right;
127 dirtyRect->top = dirtyBounds.top
    [all...]
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.h 41 ANPCanvas* getCanvas(ANPRectI* dirtyRect = NULL);
42 ANPCanvas* getCanvas(ANPRectF* dirtyRect);
PaintPlugin.cpp 96 ANPCanvas* PaintPlugin::getCanvas(ANPRectI* dirtyRect) {
101 !gSurfaceI.lock(env, m_surface, &bitmap, dirtyRect)) {
110 if (dirtyRect) {
112 clipR.left = dirtyRect->left;
113 clipR.top = dirtyRect->top;
114 clipR.right = dirtyRect->right;
115 clipR.bottom = dirtyRect->bottom;
122 ANPCanvas* PaintPlugin::getCanvas(ANPRectF* dirtyRect) {
125 newRect.left = (int) dirtyRect->left;
126 newRect.top = (int) dirtyRect->top
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
WebTiledLayer.mm 74 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect
78 dirtyRect = CGRectApplyAffineTransform(dirtyRect, [self contentsTransform]);
80 [super setNeedsDisplayInRect:dirtyRect];
WebLayer.mm 135 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect
139 dirtyRect = CGRectApplyAffineTransform(dirtyRect, [self contentsTransform]);
141 [super setNeedsDisplayInRect:dirtyRect];
  /frameworks/base/core/jni/
android_view_Surface.cpp 295 static jobject Surface_lockCanvas(JNIEnv* env, jobject clazz, jobject dirtyRect)
303 if (dirtyRect) {
305 dirty.left = env->GetIntField(dirtyRect, ro.l);
306 dirty.top = env->GetIntField(dirtyRect, ro.t);
307 dirty.right = env->GetIntField(dirtyRect, ro.r);
308 dirty.bottom= env->GetIntField(dirtyRect, ro.b);
363 if (dirtyRect) {
365 env->SetIntField(dirtyRect, ro.l, bounds.left);
366 env->SetIntField(dirtyRect, ro.t, bounds.top);
367 env->SetIntField(dirtyRect, ro.r, bounds.right)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebUIDelegatePrivate.idl 98 HRESULT drawBackground([in] IWebView* sender, [in] OLE_HANDLE hdc, [in] const RECT* dirtyRect);
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayerRenderer.cpp 303 RECT dirtyRect;
304 if (GetUpdateRect(window, &dirtyRect, false))
305 outRects.append(winRectToCGRect(dirtyRect, clientRect));
WKCACFLayer.cpp 526 void WKCACFLayer::setNeedsDisplay(const CGRect& dirtyRect)
529 CACFLayerSetNeedsDisplay(layer(), &dirtyRect);
WKCACFLayer.h 183 void setNeedsDisplay(const CGRect& dirtyRect);
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 840 FloatRect dirtyRect(dirtyOrigin, r.size());
842 if (bounds.intersects(dirtyRect))
843 m_graphicsLayer->setNeedsDisplayInRect(dirtyRect);
    [all...]
RenderObject.cpp     [all...]
  /external/webkit/WebKit/win/
WebView.cpp 764 void WebView::addToDirtyRegion(const IntRect& dirtyRect)
766 // FIXME: We want an assert here saying that the dirtyRect is inside the clienRect,
770 HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(),
771 dirtyRect.right(), dirtyRect.bottom());
837 static void getUpdateRects(HRGN region, const IntRect& dirtyRect, Vector<IntRect>& rects)
848 rects.append(dirtyRect);
856 rects.append(dirtyRect);
866 double unionPixels = dirtyRect.width() * dirtyRect.height()
    [all...]
WebView.h 805 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect);
    [all...]
WebFrame.cpp 350 FloatRect dirtyRect;
351 dirtyRect.setWidth(width);
352 dirtyRect.setHeight(height);
353 gc.clip(dirtyRect);
    [all...]
  /external/webkit/WebKit/qt/Api/
qgraphicswebview.cpp 95 virtual void update(const QRect& dirtyRect);
226 void QGraphicsWebViewPrivate::update(const QRect & dirtyRect)
228 q->update(QRectF(dirtyRect));
231 overlay->update(QRectF(dirtyRect));
qwebpage.h 315 void repaintRequested(const QRect& dirtyRect);
qwebpage.cpp 173 virtual void update(const QRect& dirtyRect);
201 void QWebPageWidgetClient::update(const QRect & dirtyRect)
203 view->update(dirtyRect);
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]
  /external/webkit/WebCore/page/
FrameView.cpp     [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp     [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.mm 454 NSRect dirtyRect = [self convertRect:dirtyRects[dirtyRectIndex] fromView:opaqueAncestor];
455 if (!NSEqualSizes(dirtyRect.size, NSZeroSize)) {
458 SetRectRgn(dirtyRectRegion, static_cast<short>(NSMinX(dirtyRect)), static_cast<short>(NSMinY(dirtyRect)), static_cast<short>(NSMaxX(dirtyRect)), static_cast<short>(NSMaxY(dirtyRect)));
    [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]

Completed in 1280 milliseconds