Searched refs:contentsRect (Results 1 - 20 of 20) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DTiledDrawingArea.cpp211 IntRect contentsRect; local
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/
H A DTiledBackingStore.cpp217 keepRect.intersect(contentsRect());
225 coverRect.intersect(contentsRect());
271 IntRect contentsRect = this->contentsRect(); local
279 if (expectedTileRect != tileRect || !contentsRect.contains(tileRect))
335 IntRect TiledBackingStore::contentsRect() const function in class:WebCore::TiledBackingStore
347 rect.intersect(contentsRect());
H A DTiledBackingStore.h94 IntRect contentsRect() const;
H A DGraphicsLayer.h295 IntRect contentsRect() const { return m_contentsRect; } function in class:WebCore::GraphicsLayer
/external/webkit/Source/WebKit2/UIProcess/
H A DTiledDrawingAreaProxy.cpp228 void TiledDrawingAreaProxy::takeSnapshot(const IntSize& size, const IntRect& contentsRect) argument
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(); local
492 if (!contentsRect.contains(tileRect))
561 IntRect TiledDrawingAreaProxy::contentsRect() const function in class:WebKit::TiledDrawingAreaProxy
573 rect.intersect(contentsRect());
H A DTiledDrawingAreaProxy.h77 void takeSnapshot(const WebCore::IntSize& size, const WebCore::IntRect& contentsRect);
145 WebCore::IntRect contentsRect() const;
/external/webkit/Source/WebCore/platform/wx/
H A DScrollViewWx.cpp142 wxRect contentsRect = updateRect; local
143 contentsRect.Offset(-scrollX(), -scrollY());
146 win->RefreshRect(contentsRect, true);
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.h178 return m_currentContent.contentType == HTMLContentType ? entireRect() : m_state.contentsRect;
214 IntRect contentsRect; member in struct:WebCore::TextureMapperNode::State
H A DTextureMapperNode.cpp782 wantedSize = IntSize(graphicsLayer->contentsRect().width(), graphicsLayer->contentsRect().height());
826 m_state.contentsRect = graphicsLayer->contentsRect();
828 m_state.contentsRect = graphicsLayer->contentsRect();
H A DGraphicsLayerTextureMapper.cpp306 if (value == contentsRect())
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp703 IntRect contentsRect(0, 0,
708 contentsRect.inflate(outline);
710 m_foregroundLayer->setSize(contentsRect.width(), contentsRect.height());
718 (void) paintContext(m_foregroundLayer, contentsRect);
748 region.setRect(0, 0, contentsRect.width(), contentsRect.height());
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.cpp290 QRect contentsRect; member in struct:WebCore::GraphicsLayerQtImpl::State
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;
854 m_state.contentsRect = m_layer->contentsRect();
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DPlatformCALayer.h156 FloatRect contentsRect() const;
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControlSingleLine.cpp227 IntRect contentsRect = contentBoxRect(); local
230 contentsRect.setY((height() - contentsRect.height()) / 2);
233 contentsRect.move(tx + x(), ty + y());
234 theme()->paintCapsLockIndicator(this, paintInfo, contentsRect);
H A DRenderLayerBacking.cpp1014 IntRect contentsRect;
1018 contentsRect = videoRenderer->videoBox();
1021 contentsRect = toRenderBox(renderer())->contentBoxRect();
1024 contentsRect.move(contentOffset);
1025 return contentsRect;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp369 void QGraphicsWKView::takeSnapshot(const QSize& size, const QRect& contentsRect) argument
376 tiledDrawingArea->takeSnapshot(size, contentsRect);
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCALayerMac.mm124 nullValue, @"contentsRect",
584 FloatRect PlatformCALayer::contentsRect() const
586 return [m_layer.get() contentsRect];
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.cpp617 QRect contentsRect = qStyle()->subElementRect(QStyle::SE_PushButtonContents, local
619 paddingLeft = contentsRect.left() - layoutRect.left();
620 paddingRight = layoutRect.right() - contentsRect.right();
621 paddingTop = contentsRect.top() - layoutRect.top();
624 // paddingBottom = layoutRect.bottom() - contentsRect.bottom();
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp459 FloatRect PlatformCALayer::contentsRect() const function in class:PlatformCALayer
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp750 IntRect ScrollView::contentsToWindow(const IntRect& contentsRect) const
752 IntRect viewRect = contentsRect;

Completed in 525 milliseconds