/external/webkit/Source/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...] |
/external/webkit/Source/WebCore/platform/chromium/ |
FramelessScrollView.cpp | 49 IntRect dirtyRect = rect; 50 dirtyRect.move(scrollbar->x(), scrollbar->y()); 51 invalidateRect(dirtyRect);
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_frame_view.h | 48 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
|
/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/Source/WebCore/platform/graphics/mac/ |
WebTiledLayer.mm | 67 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect 71 setLayerNeedsDisplayInRect(self, layer->owner(), dirtyRect);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
WebLayer.h | 53 virtual void internalSetNeedsDisplay(const CGRect* dirtyRect);
|
WebLayer.cpp | 39 void WebLayer::internalSetNeedsDisplay(const CGRect* dirtyRect) 52 if (dirtyRect && m_owner->contentsOrientation() == WebCore::GraphicsLayer::CompositingCoordinatesTopDown) { 53 CGRect flippedDirtyRect = *dirtyRect; 60 WKCACFLayer::internalSetNeedsDisplay(dirtyRect);
|
WebTiledLayer.h | 57 virtual void internalSetNeedsDisplay(const CGRect* dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
PageOverlay.h | 53 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect) = 0; 63 void setNeedsDisplay(const WebCore::IntRect& dirtyRect); 66 void drawRect(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
|
PageOverlay.cpp | 89 void PageOverlay::setNeedsDisplay(const IntRect& dirtyRect) 92 m_webPage->drawingArea()->setPageOverlayNeedsDisplay(dirtyRect); 100 void PageOverlay::drawRect(GraphicsContext& graphicsContext, const IntRect& dirtyRect) 103 IntRect paintRect = intersection(dirtyRect, bounds());
|
TiledDrawingArea.cpp | 82 IntRect dirtyRect = m_dirtyRect; 85 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::Invalidate, m_webPage->pageID(), CoreIPC::In(dirtyRect)); 137 void TiledDrawingArea::updateTile(int tileID, const IntRect& dirtyRect, float scale) 141 UpdateChunk updateChunk(dirtyRect); 156 updateTile(update.tileID, update.dirtyRect, update.scale); 197 if (!arguments->decode(CoreIPC::Out(update.tileID, update.dirtyRect, update.scale))) 201 it->second.dirtyRect.unite(update.dirtyRect);
|
TiledDrawingArea.h | 67 void updateTile(int tileID, const WebCore::IntRect& dirtyRect, float scale); 81 WebCore::IntRect dirtyRect;
|
FindController.h | 63 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
|
ChunkedUpdateDrawingArea.cpp | 80 IntRect dirtyRect = m_dirtyRect; 84 UpdateChunk updateChunk(dirtyRect);
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
TiledDrawingAreaTileQt.cpp | 80 void TiledDrawingAreaTile::invalidate(const IntRect& dirtyRect) 82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect); 147 IntRect dirtyRect = m_dirtyRegion.boundingRect(); 151 qDebug() << "requesting tile update id=" << m_ID << " rect=" << QRect(dirtyRect) << " scale=" << m_proxy->contentsScale(); 155 m_proxy->requestTileUpdate(m_ID, dirtyRect);
|
/frameworks/base/core/jni/ |
android_view_TextureView.cpp | 124 jint nativeWindow, jobject canvas, jobject dirtyRect) { 133 if (dirtyRect) { 134 rect.left = GET_INT(dirtyRect, gRectClassInfo.left); 135 rect.top = GET_INT(dirtyRect, gRectClassInfo.top); 136 rect.right = GET_INT(dirtyRect, gRectClassInfo.right); 137 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom); 168 if (dirtyRect) { 169 INVOKEV(dirtyRect, gRectClassInfo.set,
|
/external/webkit/Source/WebCore/platform/mac/ |
WidgetMac.mm | 257 IntRect dirtyRect = r; 258 dirtyRect.move(-transformOrigin.x(), -transformOrigin.y()); 260 dirtyRect.setY([view bounds].size.height - dirtyRect.maxY()); 262 [view displayRectIgnoringOpacity:dirtyRect]; 301 IntRect dirtyRect = r; 302 dirtyRect.move(-transformOrigin.x(), -transformOrigin.y()); 304 dirtyRect.setY([view bounds].size.height - dirtyRect.maxY()); 312 [view displayRectIgnoringOpacity:dirtyRect inContext:nsContext] [all...] |
/external/webkit/Source/WebKit2/UIProcess/ |
FindIndicator.h | 53 void draw(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
|
TiledDrawingAreaProxy.cpp | 174 void TiledDrawingAreaProxy::requestTileUpdate(int tileID, const IntRect& dirtyRect) 176 page()->process()->connection()->deprecatedSend(DrawingAreaLegacyMessage::RequestTileUpdate, page()->pageID(), CoreIPC::In(tileID, dirtyRect, contentsScale())); 236 IntRect dirtyRect(mapFromContents(contentsDirtyRect)); 238 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); 239 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY())); 250 if (!currentTile->rect().intersects(dirtyRect)) 257 currentTile->invalidate(dirtyRect); 334 IntRect dirtyRect = mapFromContents(rect); 336 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()) [all...] |
/external/webkit/Source/WebCore/platform/graphics/ |
TiledBackingStore.cpp | 74 IntRect dirtyRect(mapFromContents(contentsDirtyRect)); 76 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); 77 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY())); 84 currentTile->invalidate(dirtyRect); 133 IntRect dirtyRect = mapFromContents(rect); 135 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location()); 136 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY())); 143 currentTile->paint(context, dirtyRect); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseTile.cpp | 292 float scale, const SkRect& dirtyRect, 301 // scale the dirtyRect for intersect computation. 302 SkRect realDirtyRect = SkRect::MakeWH(dirtyRect.width() * scale, 303 dirtyRect.height() * scale); 304 realDirtyRect.offset(dirtyRect.fLeft * scale, dirtyRect.fTop * scale); 390 SkRect dirtyRect; 391 dirtyRect.set(cliperator.rect()); 393 scale, dirtyRect, realTileRect);
|
/external/webkit/Source/WebKit2/PluginProcess/ |
PluginControllerProxy.cpp | 144 IntRect dirtyRect = m_dirtyRect; 155 graphicsContext->clearRect(dirtyRect); 157 m_plugin->paint(graphicsContext.get(), dirtyRect); 159 m_connection->connection()->send(Messages::PluginProxy::Update(dirtyRect), m_pluginInstanceID); 186 IntRect dirtyRect = rect; 187 dirtyRect.move(m_frameRect.x(), m_frameRect.y()); 190 dirtyRect.intersect(m_frameRect); 192 m_dirtyRect.unite(dirtyRect);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePageOverlay.cpp | 75 virtual void drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const IntRect& dirtyRect) 80 m_client.drawRect(toAPI(pageOverlay), graphicsContext.platformContext(), toAPI(dirtyRect), m_client.clientInfo);
|