/external/webkit/WebKit/android/plugins/ |
D | ANPSurfaceInterface.cpp | 69 static bool anp_lock(JNIEnv* env, jobject surfaceView, ANPBitmap* bitmap, ANPRectI* dirtyRect) { in anp_lock() argument 81 if (dirtyRect) { in anp_lock() 82 Rect rect(dirtyRect->left, dirtyRect->top, dirtyRect->right, dirtyRect->bottom); in anp_lock()
|
D | ANPSurface_npapi.h | 15 bool (*lock)(JNIEnv* env, jobject surface, ANPBitmap* bitmap, ANPRectI* dirtyRect);
|
/external/webkit/WebCore/platform/chromium/ |
D | FramelessScrollView.cpp | 48 IntRect dirtyRect = rect; in invalidateScrollbarRect() local 49 dirtyRect.move(scrollbar->x(), scrollbar->y()); in invalidateScrollbarRect() 50 invalidateRect(dirtyRect); in invalidateScrollbarRect()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | WebTiledLayer.mm | 74 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect 78 dirtyRect = CGRectApplyAffineTransform(dirtyRect, [self contentsTransform]); 80 [super setNeedsDisplayInRect:dirtyRect];
|
D | WebLayer.mm | 137 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect 141 dirtyRect = CGRectApplyAffineTransform(dirtyRect, [self contentsTransform]); 143 [super setNeedsDisplayInRect:dirtyRect];
|
/external/webkit/WebKitTools/DrawTest/ |
D | ScalingImageView.m | 38 - (void)drawRect:(NSRect)dirtyRect 41 NSRectFill(dirtyRect);
|
/external/webkit/WebCore/platform/mac/ |
D | ScrollViewMac.mm | 177 NSRect dirtyRect = NSIntersectionRect(rect, visibleRect); 178 if (!NSIsEmptyRect(dirtyRect)) { 179 [view setNeedsDisplayInRect:dirtyRect];
|
/external/webkit/WebCore/rendering/ |
D | RenderLayerBacking.cpp | 715 FloatRect dirtyRect(dirtyOrigin, r.size()); in setContentsNeedDisplayInRect() local 717 if (bounds.intersects(dirtyRect)) in setContentsNeedDisplayInRect() 718 m_graphicsLayer->setNeedsDisplayInRect(dirtyRect); in setContentsNeedDisplayInRect() 912 IntRect dirtyRect = enclosingBBox; in paintContents() local 913 dirtyRect.intersect(clipRect); in paintContents() 915 …paintIntoLayer(m_owningLayer, &context, dirtyRect, PaintRestrictionNone, drawingPhase, renderer()); in paintContents()
|
D | RenderObject.cpp | 1146 IntRect dirtyRect(r); in repaintRectangle() local 1150 dirtyRect.move(view->layoutDelta()); in repaintRectangle() 1153 computeRectForRepaint(repaintContainer, dirtyRect); in repaintRectangle() 1154 repaintUsingContainer(repaintContainer ? repaintContainer : view, dirtyRect, immediate); in repaintRectangle()
|
/external/webkit/WebKit/win/ |
D | WebView.cpp | 720 void WebView::addToDirtyRegion(const IntRect& dirtyRect) in addToDirtyRegion() argument 722 HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(), in addToDirtyRegion() 723 dirtyRect.right(), dirtyRect.bottom()); in addToDirtyRegion() 790 static void getUpdateRects(HRGN region, const IntRect& dirtyRect, Vector<IntRect>& rects) in getUpdateRects() argument 801 rects.append(dirtyRect); in getUpdateRects() 809 rects.append(dirtyRect); in getUpdateRects() 819 double unionPixels = dirtyRect.width() * dirtyRect.height(); in getUpdateRects() 822 rects.append(dirtyRect); in getUpdateRects() 957 void WebView::paintIntoBackingStore(FrameView* frameView, HDC bitmapDC, const IntRect& dirtyRect, W… in paintIntoBackingStore() argument 961 RECT rect = dirtyRect; in paintIntoBackingStore() [all …]
|
D | WebFrame.cpp | 328 FloatRect dirtyRect; in paintDocumentRectToContext() local 329 dirtyRect.setWidth(width); in paintDocumentRectToContext() 330 dirtyRect.setHeight(height); in paintDocumentRectToContext() 331 gc.clip(dirtyRect); in paintDocumentRectToContext()
|
D | WebView.h | 756 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect); 839 …void paintIntoBackingStore(WebCore::FrameView*, HDC bitmapDC, const WebCore::IntRect& dirtyRect, W…
|
/external/webkit/WebCore/page/ |
D | FrameView.cpp | 1394 IntRect dirtyRect = rect; in invalidateScrollbarRect() local 1395 dirtyRect.move(scrollbar->x(), scrollbar->y()); in invalidateScrollbarRect() 1396 invalidateRect(dirtyRect); in invalidateScrollbarRect() 1629 … IntRect dirtyRect(0, (int)floorf(oldTop), root->overflowWidth(), (int)ceilf(oldBottom - oldTop)); in adjustPageHeight() local 1630 root->layer()->paint(&context, dirtyRect); in adjustPageHeight()
|
/external/webkit/WebCore/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 1246 FloatRect dirtyRect = r; in willDraw() local 1249 dirtyRect = ctm.mapRect(r); in willDraw() 1254 FloatRect shadowRect(dirtyRect); in willDraw() 1257 dirtyRect.unite(shadowRect); in willDraw() 1266 m_canvas->willDraw(dirtyRect); in willDraw()
|
/external/webkit/WebCore/plugins/ |
D | PluginView.cpp | 1179 IntRect dirtyRect = rect; in invalidateWindowlessPluginRect() local 1180 …dirtyRect.move(renderer->borderLeft() + renderer->paddingLeft(), renderer->borderTop() + renderer-… in invalidateWindowlessPluginRect() 1181 renderer->repaintRectangle(dirtyRect); in invalidateWindowlessPluginRect()
|
/external/webkit/WebKit/qt/Api/ |
D | qwebpage.h | 304 void repaintRequested(const QRect& dirtyRect);
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebNetscapePluginView.mm | 462 … NSRect dirtyRect = [self convertRect:dirtyRects[dirtyRectIndex] fromView:opaqueAncestor]; 463 if (!NSEqualSizes(dirtyRect.size, NSZeroSize)) { 466 …hort>(NSMinX(dirtyRect)), static_cast<short>(NSMinY(dirtyRect)), static_cast<short>(NSMaxX(dirtyRe…
|