/external/webkit/Source/WebKit/chromium/src/ |
WebPluginContainerImpl.cpp | 134 IntRect dirtyRect = rect; 135 dirtyRect.move(renderer->borderLeft() + renderer->paddingLeft(), 137 renderer->repaintRectangle(dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
PluginProxy.cpp | 125 void PluginProxy::paint(GraphicsContext* graphicsContext, const IntRect& dirtyRect) 142 IntRect dirtyRectInPluginCoordinates = dirtyRect; 145 m_backingStore->paint(*graphicsContext, dirtyRect.location(), dirtyRectInPluginCoordinates);
|
PluginView.cpp | 516 void PluginView::paint(GraphicsContext* context, const IntRect& dirtyRect) 521 IntRect dirtyRectInWindowCoordinates = parent()->contentsToWindow(dirtyRect); 823 void PluginView::invalidateRect(const IntRect& dirtyRect) 833 IntRect dirtyRectInWindowCoordinates = convertToContainingWindow(dirtyRect); 856 void PluginView::invalidate(const IntRect& dirtyRect) 858 invalidateRect(dirtyRect); [all...] |
PluginProxy.h | 66 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect);
|
Plugin.h | 78 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect) = 0;
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerChromium.cpp | 249 void LayerChromium::setNeedsDisplay(const FloatRect& dirtyRect) 256 m_dirtyRect.unite(dirtyRect);
|
LayerRendererChromium.h | 76 void invalidateRootLayerRect(const IntRect& dirtyRect);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
WebTiledLayer.cpp | 105 void WebTiledLayer::internalSetNeedsDisplay(const CGRect* dirtyRect) 110 CACFLayerSetNeedsDisplay(tileAtIndex(i), dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/ |
NetscapePluginX11.cpp | 196 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool /*isSnapshot*/) 228 IntRect exposedRect(dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
FindController.cpp | 293 void FindController::drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const IntRect& dirtyRect) 300 graphicsContext.fillRect(dirtyRect, overlayBackgroundColor(fractionFadedIn), ColorSpaceSRGB);
|
/external/chromium/chrome/browser/ui/cocoa/ |
dock_icon.mm | 41 - (void)drawRect:(NSRect)dirtyRect {
|
theme_install_bubble_view.mm | 175 - (void)drawRect:(NSRect)dirtyRect {
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
PlatformCALayer.h | 87 void setNeedsDisplay(const FloatRect* dirtyRect = 0);
|
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
TextureMapperGL.cpp | 229 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect); 468 PlatformGraphicsContext* BitmapTextureGL::beginPaint(const IntRect& dirtyRect) 471 m_dirtyRect = dirtyRect; 472 return m_buffer->beginPaint(dirtyRect, m_opaque);
|
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
TextureMapperNode.cpp | 446 IntRect dirtyRect = IntRect(0, 0, m_size.width(), m_size.height()); 448 dirtyRect.intersect(m_currentContent.needsDisplayRect); 454 GraphicsContext context(m_texture->beginPaint(dirtyRect)); 459 layer->paintGraphicsLayerContents(context, dirtyRect);
|
/external/webkit/Source/WebKit2/UIProcess/ |
FindIndicator.cpp | 145 void FindIndicator::draw(GraphicsContext& graphicsContext, const IntRect& dirtyRect)
|
TiledDrawingAreaProxy.h | 124 void requestTileUpdate(int tileID, const WebCore::IntRect& dirtyRect);
|
/external/webkit/Source/WebKit/win/ |
WebView.cpp | 791 void WebView::addToDirtyRegion(const IntRect& dirtyRect) 793 // FIXME: We want an assert here saying that the dirtyRect is inside the clienRect, 799 m_backingLayer->setNeedsDisplayInRect(dirtyRect); 804 HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(), 805 dirtyRect.maxX(), dirtyRect.maxY()); 902 static void getUpdateRects(HRGN region, const IntRect& dirtyRect, Vector<IntRect>& rects) 913 rects.append(dirtyRect); 921 rects.append(dirtyRect); [all...] |
/external/webkit/Source/WebCore/page/ |
FrameView.cpp | [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
CanvasRenderingContext2D.cpp | [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
PlatformCALayerWin.cpp | 163 void PlatformCALayer::setNeedsDisplay(const FloatRect* dirtyRect) 165 intern(this)->setNeedsDisplay(dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
NetscapePlugin.cpp | 507 void NetscapePlugin::paint(GraphicsContext* context, const IntRect& dirtyRect) 511 platformPaint(context, dirtyRect);
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseTile.h | 110 float scale, const SkRect& dirtyRect,
|
/external/webkit/Source/WebKit/qt/Api/ |
qwebpage.h | 380 void repaintRequested(const QRect& dirtyRect);
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebView.h | 114 void paint(HDC, const WebCore::IntRect& dirtyRect);
|