HomeSort by relevance Sort by last modified time
    Searched refs:contentsSize (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 68 page.setViewportSize(page.mainFrame()->contentsSize());
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 127 QPixmap pixmap(mainFrame->contentsSize());
130 mainFrame->render(&painter, QRect(QPoint(0, 0), mainFrame->contentsSize()));
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 115 resetValues ? 0 : contentsSize().width(),
154 resetValues ? 0 : contentsSize().height(),
  /external/webkit/Source/WebCore/rendering/
RenderIFrame.cpp 103 return absoluteBoundingBoxRect().intersects(IntRect(IntPoint(0, 0), view->contentsSize()));
RenderListBox.h 115 virtual IntSize contentsSize() const;
RenderLayer.h 568 virtual IntSize contentsSize() const;
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.h 115 Q_PROPERTY(QSize contentsSize READ contentsSize)
190 QSize contentsSize() const;
qwebview.cpp 163 QSize range = hitFrame->contentsSize() - hitFrame->geometry().size();
175 QSize s = frame ? frame->contentsSize() - frame->geometry().size() : QSize(0, 0);
    [all...]
  /external/webkit/Source/WebCore/platform/
ScrollView.h 169 IntSize contentsSize() const; // Always at least as big as the visibleWidth()/visibleHeight().
170 int contentsWidth() const { return contentsSize().width(); }
171 int contentsHeight() const { return contentsSize().height(); }
ScrollableArea.h 126 virtual IntSize contentsSize() const { ASSERT_NOT_REACHED(); return IntSize(); }
ScrollView.cpp 243 return IntRect(IntPoint(0, 0), contentsSize());
292 IntSize ScrollView::contentsSize() const
301 if (contentsSize() == newSize)
541 IntSize docSize = contentsSize();
580 IntSize newDocSize = contentsSize();
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 181 WebCore::IntSize contentsSize = _animator->scrollableArea()->contentsSize();
182 return NSMakeRect(0, 0, contentsSize.width(), contentsSize.height());
557 return max<float>(min<float>(position, m_scrollableArea->contentsSize().width() - m_scrollableArea->visibleWidth()), 0);
565 return max<float>(min<float>(position, m_scrollableArea->contentsSize().height() - m_scrollableArea->visibleHeight()), 0);
573 float newX = max<float>(min<float>(position.x(), m_scrollableArea->contentsSize().width() - m_scrollableArea->visibleWidth()), 0);
574 float newY = max<float>(min<float>(position.y(), m_scrollableArea->contentsSize().height() - m_scrollableArea->visibleHeight()), 0);
851 limitDelta.setHeight(m_scrollableArea->contentsSize().height() - (m_scrollableArea->visibleContentRect().maxY() + m_scrollableArea->scrollOrigin().y()));
859 limitDelta.setWidth(m_scrollableArea->contentsSize().width() - (m_scrollableArea->visibleContentRect().maxX() + m_scrollableArea->scrollOrigin().x()) (…)
    [all...]
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview_p.h 124 Q_PROPERTY(QSize contentsSize READ contentsSize NOTIFY contentsSizeChanged)
194 QSize contentsSize() const;
qdeclarativewebview.cpp 965 QSize QDeclarativeWebView::contentsSize() const
967 return page()->mainFrame()->contentsSize() * contentsScale();
    [all...]
  /external/webkit/Source/WebCore/page/
PrintContext.cpp 259 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
323 scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
FrameView.cpp 456 if (size == contentsSize())
485 ScrollView::setScrollOrigin(IntPoint(-root->docLeft(), -root->docTop()), !m_frame->document()->printing(), size == contentsSize());
    [all...]
Frame.cpp 925 return IntRect(IntPoint(), m_view->contentsSize());
    [all...]
SpatialNavigation.cpp 487 IntSize size = frame->view()->contentsSize();
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 157 virtual WebSize contentsSize() const = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 77 virtual WebSize contentsSize() const;
WebFrameImpl.cpp 575 WebSize WebFrameImpl::contentsSize() const
577 return frame()->view()->contentsSize();
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
TiledDrawingArea.cpp 218 contentsRect.intersect(IntRect(IntPoint::zero(), m_webPage->mainFrame()->coreFrame()->view()->contentsSize()));
WebFrame.cpp 303 return frameView->contentsSize();
  /external/webkit/Tools/QtTestBrowser/
webview.cpp 116 QRectF itemRect(graphicsWebView()->geometry().topLeft(), graphicsWebView()->page()->mainFrame()->contentsSize());
  /external/webkit/Source/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 380 view1.page()->setViewportSize(view1.page()->currentFrame()->contentsSize());
427 view2.page()->setViewportSize(view2.page()->currentFrame()->contentsSize());

Completed in 630 milliseconds

1 2