/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
TiledDrawingArea.cpp | 211 IntRect contentsRect; 213 if (!arguments->decode(CoreIPC::Out(targetSize, contentsRect))) 218 contentsRect.intersect(IntRect(IntPoint::zero(), m_webPage->mainFrame()->coreFrame()->view()->contentsSize())); 220 float targetScale = float(targetSize.width()) / contentsRect.width(); 222 UpdateChunk updateChunk(IntRect(IntPoint(contentsRect.x() * targetScale, contentsRect.y() * targetScale), targetSize));
|
/external/webkit/Source/WebCore/platform/graphics/ |
TiledBackingStore.cpp | 217 keepRect.intersect(contentsRect()); 225 coverRect.intersect(contentsRect()); 271 IntRect contentsRect = this->contentsRect(); 279 if (expectedTileRect != tileRect || !contentsRect.contains(tileRect)) 335 IntRect TiledBackingStore::contentsRect() const 347 rect.intersect(contentsRect());
|
TiledBackingStore.h | 94 IntRect contentsRect() const;
|
GraphicsLayer.h | 295 IntRect contentsRect() const { return m_contentsRect; }
|
/external/webkit/Source/WebKit2/UIProcess/ |
TiledDrawingAreaProxy.cpp | 228 void TiledDrawingAreaProxy::takeSnapshot(const IntSize& size, const IntRect& contentsRect) 231 page->process()->deprecatedSend(DrawingAreaLegacyMessage::TakeSnapshot, page->pageID(), CoreIPC::Out(size, contentsRect)); 399 result.intersect(contentsRect()); 409 result.intersect(contentsRect()); 483 IntRect contentsRect = this->contentsRect(); 492 if (!contentsRect.contains(tileRect)) 561 IntRect TiledDrawingAreaProxy::contentsRect() const 573 rect.intersect(contentsRect());
|
TiledDrawingAreaProxy.h | 77 void takeSnapshot(const WebCore::IntSize& size, const WebCore::IntRect& contentsRect); 145 WebCore::IntRect contentsRect() const;
|
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
TextureMapperNode.h | 178 return m_currentContent.contentType == HTMLContentType ? entireRect() : m_state.contentsRect; 214 IntRect contentsRect;
|
TextureMapperNode.cpp | 782 wantedSize = IntSize(graphicsLayer->contentsRect().width(), graphicsLayer->contentsRect().height()); 826 m_state.contentsRect = graphicsLayer->contentsRect(); 828 m_state.contentsRect = graphicsLayer->contentsRect();
|
GraphicsLayerTextureMapper.cpp | 306 if (value == contentsRect())
|
/external/webkit/Source/WebCore/platform/wx/ |
ScrollViewWx.cpp | 142 wxRect contentsRect = updateRect; 143 contentsRect.Offset(-scrollX(), -scrollY()); 146 win->RefreshRect(contentsRect, true);
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsLayerQt.cpp | 290 QRect contentsRect; 614 painterPath.addRect(m_state.contentsRect); 646 backingStore = recache(QRegion(m_state.contentsRect)); 653 painter->drawPixmap(m_state.contentsRect, m_currentContent.pixmap); 656 painter->fillRect(m_state.contentsRect, m_currentContent.contentsBackgroundColor); 806 const QRect rect(m_layer->contentsRect()); 807 if (m_state.contentsRect != rect) { 808 m_state.contentsRect = rect; [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/ |
PlatformCALayer.h | 156 FloatRect contentsRect() const;
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
GraphicsLayerAndroid.cpp | 571 IntRect contentsRect(0, 0, 574 contentsRect.inflate(outline); 576 m_foregroundLayer->setSize(contentsRect.width(), contentsRect.height()); 584 (void) paintContext(m_foregroundLayer->recordContext(), contentsRect);
|
/external/webkit/Source/WebCore/rendering/ |
RenderTextControlSingleLine.cpp | 227 IntRect contentsRect = contentBoxRect(); 230 contentsRect.setY((height() - contentsRect.height()) / 2); 233 contentsRect.move(tx + x(), ty + y()); 234 theme()->paintCapsLockIndicator(this, paintInfo, contentsRect); [all...] |
RenderLayerBacking.cpp | [all...] |
/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
qgraphicswkview.cpp | 369 void QGraphicsWKView::takeSnapshot(const QSize& size, const QRect& contentsRect) 376 tiledDrawingArea->takeSnapshot(size, contentsRect);
|
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
PlatformCALayerMac.mm | 124 nullValue, @"contentsRect", 584 FloatRect PlatformCALayer::contentsRect() const 586 return [m_layer.get() contentsRect];
|
/external/webkit/Source/WebCore/platform/qt/ |
RenderThemeQt.cpp | 617 QRect contentsRect = qStyle()->subElementRect(QStyle::SE_PushButtonContents, 619 paddingLeft = contentsRect.left() - layoutRect.left(); 620 paddingRight = layoutRect.right() - contentsRect.right(); 621 paddingTop = contentsRect.top() - layoutRect.top(); 624 // paddingBottom = layoutRect.bottom() - contentsRect.bottom(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
PlatformCALayerWin.cpp | 459 FloatRect PlatformCALayer::contentsRect() const
|
/external/webkit/Source/WebCore/platform/ |
ScrollView.cpp | 719 IntRect ScrollView::contentsToWindow(const IntRect& contentsRect) const 721 IntRect viewRect = contentsRect; [all...] |