HomeSort by relevance Sort by last modified time
    Searched defs:contentsRect (Results 1 - 10 of 10) sorted by null

  /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/wx/
ScrollViewWx.cpp 142 wxRect contentsRect = updateRect;
143 contentsRect.Offset(-scrollX(), -scrollY());
146 win->RefreshRect(contentsRect, true);
  /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());
GraphicsLayer.h 295 IntRect contentsRect() const { return m_contentsRect; }
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWin.cpp 459 FloatRect PlatformCALayer::contentsRect() const
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.h 178 return m_currentContent.contentType == HTMLContentType ? entireRect() : m_state.contentsRect;
214 IntRect 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());
  /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...]
  /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/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...]

Completed in 606 milliseconds